syscalls.c

来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 19 行

C
19
字号
/* Operating system stubs, set up for the MRI simulator */#include <_ansi.h>#include <errno.h>int isatty(file)     int file;{  return 1;}int_unlink (path)     const char *path;{  errno = EIO;  return -1;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?