s390x: add single-instruction math functions
[musl.git] / src / stdio / gets.c
blob6c4645e5640b7b9d4df8387346a02122dfc0f5ea
1 #include "stdio_impl.h"
2 #include <limits.h>
3 #include <string.h>
5 char *gets(char *s)
7 char *ret = fgets(s, INT_MAX, stdin);
8 if (ret && s[strlen(s)-1] == '\n') s[strlen(s)-1] = 0;
9 return ret;