blob: 24319eb2dcf62b431648bfef6641b2eda5854476 [file] [log] [blame]
#include "stdio_impl.h"
char *gets(char *s)
{
char *ret = fgets(s, INT_MAX, stdin);
if (ret && s[strlen(s)-1] == '\n') s[strlen(s)-1] = 0;
return ret;
}