fxlibc/src/libc/stdio/gets.c

8 lines
105 B
C
Raw Normal View History

2022-01-05 21:25:41 +01:00
#include <stdio.h>
#include <limits.h>
extern char *gets(char *s)
{
return fgets(s, INT_MAX, stdin);
}