fxlibc/src/libc/stdio/gets.c
2022-01-05 21:26:06 +01:00

7 lines
105 B
C

#include <stdio.h>
#include <limits.h>
extern char *gets(char *s)
{
return fgets(s, INT_MAX, stdin);
}