浏览代码

Add missing fstat & isatty

main
PaulStoffregen 11 年前
父节点
当前提交
f45ddee4e4
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. +13
    -0
      teensy3/mk20dx128.c

+ 13
- 0
teensy3/mk20dx128.c 查看文件

@@ -356,6 +356,19 @@ int _close(int fd)
return -1;
}

#include <sys/stat.h>

int _fstat(int fd, struct stat *st)
{
st->st_mode = S_IFCHR;
return 0;
}

int _isatty(int fd)
{
return 1;
}

int _lseek(int fd, long long offset, int whence)
{
return -1;

正在加载...
取消
保存