mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
d31a862312
* libc/include/sys/unistd.h (readlink, symlink): Provide these prototypes by default. * libc/sys/linux/include/unistd.h (readlink): Remove this prototype. * libc/sys/linux/sys/unistd.h (readlink, symlink): New prototypes.
19 lines
311 B
C
19 lines
311 B
C
/* 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;
|
|
|
|
|
|
#endif
|