diff options
Diffstat (limited to 'src/stdio/gets.c')
-rw-r--r-- | src/stdio/gets.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/gets.c b/src/stdio/gets.c index fbe16cd2..8ad0998a 100644 --- a/src/stdio/gets.c +++ b/src/stdio/gets.c @@ -2,6 +2,7 @@ #include "limits.h" /** read a line from stdin **/ + char * gets(char *s) { /* @@ -23,6 +24,7 @@ after the last character read into the array. If end-of-file is reached before any characters are read, the contents of ARGUMENT(s) remain unchanged. ***/ + /* STDC(1,201112) */ |