diff options
author | Eric Blake <eblake@redhat.com> | 2009-12-08 13:50:41 +0000 |
---|---|---|
committer | Eric Blake <eblake@redhat.com> | 2009-12-08 13:50:41 +0000 |
commit | ad0ae5d83af50e747e727b361e6d97ecb0022e51 (patch) | |
tree | 51b72832c5c557c7658b810e02001be5b2c05398 /newlib/libc/include/stdio.h | |
parent | 1d30ae12361c42a31f04af8602b1042d78d37867 (diff) | |
download | cygnal-ad0ae5d83af50e747e727b361e6d97ecb0022e51.tar.gz cygnal-ad0ae5d83af50e747e727b361e6d97ecb0022e51.tar.bz2 cygnal-ad0ae5d83af50e747e727b361e6d97ecb0022e51.zip |
Fix some *at declarations.
* libc/include/stdio.h (symlinkat): Move this...
* libc/include/sys/_default_fcntl.h (unlinkat): ...and this...
* libc/include/sys/unistd.h (symlinkat, unlinkat): ...here, to
match POSIX.
Diffstat (limited to 'newlib/libc/include/stdio.h')
-rw-r--r-- | newlib/libc/include/stdio.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h index b9c8745bc..8389449c2 100644 --- a/newlib/libc/include/stdio.h +++ b/newlib/libc/include/stdio.h @@ -348,7 +348,6 @@ FILE * _EXFUN(fmemopen, (void *, size_t, const char *)); FILE * _EXFUN(open_memstream, (char **, size_t *)); #if defined (__CYGWIN__) int _EXFUN(renameat, (int, const char *, int, const char *)); -int _EXFUN(symlinkat, (const char *, int, const char *)); #endif int _EXFUN(vdprintf, (int, const char *, __VALIST) _ATTRIBUTE ((__format__ (__printf__, 2, 0)))); |