projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove another invalid skip of locking in ungetwc
[oweals/musl.git]
/
src
/
stdio
/
gets.c
1
#include "stdio_impl.h"
2
#include <limits.h>
3
#include <string.h>
4
5
char *gets(char *s)
6
{
7
char *ret = fgets(s, INT_MAX, stdin);
8
if (ret && s[strlen(s)-1] == '\n') s[strlen(s)-1] = 0;
9
return ret;
10
}