URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [sys/] [linux/] [include/] [unistd.h] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
/* libc/sys/linux/include/unistd.h - Various standard functions */ /* Written 2000 by Werner Almesberger */ #ifndef _NEWLIB_UNISTD_H #define _NEWLIB_UNISTD_H #include <sys/types.h> #include <sys/unistd.h> /* Declare some missing goodies */ extern char *optarg; extern int optind, opterr, optopt; int readlink(const char *path, char *buf, size_t bufsiz); #endif
Go to most recent revision | Compare with Previous | Blame | View Log