diff options
Diffstat (limited to 'stdio-common/ctermid.c')
-rw-r--r-- | stdio-common/ctermid.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stdio-common/ctermid.c b/stdio-common/ctermid.c index 454402dc8f..319704f191 100644 --- a/stdio-common/ctermid.c +++ b/stdio-common/ctermid.c @@ -23,8 +23,7 @@ If S is not NULL, the name is copied into it (it should be at least L_ctermid bytes long), otherwise a static buffer is used. */ char * -ctermid (s) - char *s; +ctermid (char *s) { __set_errno (ENOSYS); return NULL; |