/* libc/sys/linux/include/unistd.h - Various standard functions */ /* Written 2000 by Werner Almesberger */ #ifndef _NEWLIB_UNISTD_H #define _NEWLIB_UNISTD_H #include #include /* Declare some missing goodies */ extern char *optarg; extern int optind, opterr, optopt; int readlink(const char *path, char *buf, size_t bufsiz); #endif