mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-04-20 09:57:01 +02:00
7 lines
105 B
C
7 lines
105 B
C
#include <stdio.h>
|
|
#include <limits.h>
|
|
|
|
extern char *gets(char *s)
|
|
{
|
|
return fgets(s, INT_MAX, stdin);
|
|
}
|