Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2018-11-29 13:22:42 +0300
committerCorinna Vinschen <corinna@vinschen.de>2018-11-29 13:22:42 +0300
commit09870c6e958cf32fd62676e742c1c70d378a90a1 (patch)
treef7acd621583469d657c43932f0e34d711b32a3f0 /newlib
parent3cbb70f8907ab58ce192b36e2e6f5a93b6d6105a (diff)
stdio.h: Expose cuserid with __GNU_VISIBLE
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib')
-rw-r--r--newlib/libc/include/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h
index f8d60766a..164d95bca 100644
--- a/newlib/libc/include/stdio.h
+++ b/newlib/libc/include/stdio.h
@@ -180,7 +180,7 @@ typedef _fpos64_t fpos64_t;
#if __POSIX_VISIBLE
char * ctermid (char *);
#endif
-#if __XSI_VISIBLE && __XSI_VISIBLE < 600
+#if __GNU_VISIBLE || (__XSI_VISIBLE && __XSI_VISIBLE < 600)
char * cuserid (char *);
#endif
FILE * tmpfile (void);