diff options
Diffstat (limited to 'stdio-common/cuserid.c')
-rw-r--r-- | stdio-common/cuserid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stdio-common/cuserid.c b/stdio-common/cuserid.c index 7ab5bb855b..3b5a755659 100644 --- a/stdio-common/cuserid.c +++ b/stdio-common/cuserid.c @@ -22,8 +22,7 @@ If S is not NULL, it points to a buffer of at least L_cuserid bytes into which the name is copied; otherwise, a static buffer is used. */ char * -cuserid (s) - char *s; +cuserid (char *s) { __set_errno (ENOSYS); return NULL; |