URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [include/] [fcntl.h] - Rev 1778
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef __FCNTL_H #define __FCNTL_H #include <features.h> #include <sys/types.h> #include <linux/fcntl.h> #ifndef FNDELAY #define FNDELAY O_NDELAY #endif __BEGIN_DECLS extern int creat __P ((__const char * __filename, mode_t __mode)); extern int fcntl __P ((int __fildes,int __cmd, ...)); extern int open __P ((__const char * __filename, int __flags, ...)); __END_DECLS #endif
Go to most recent revision | Compare with Previous | Blame | View Log