⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysfcntl.c

📁 KPIT GNU Tools is a set of GNU development tools for Renesas microcontrollers.
💻 C
字号:
/* connector for fcntl *//* only called from stdio/fdopen.c, so arg can be int. */#include <reent.h>#include <errno.h>int_DEFUN (fcntl, (fd, flag, arg),     int fd _AND     int flag _AND     int arg){#ifdef HAVE_FCNTL# ifdef REENTRANT_SYSCALLS_PROVIDED  return _fcntl_r (_REENT, fd, flag, arg);# else  return _fcntl (fd, flag, arg);# endif#else /* !HAVE_FCNTL */  errno = ENOSYS;  return -1;#endif /* !HAVE_FCNTL */}

⌨️ 快捷键说明

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