Files
zSoft/libraries/umlibc/stdio/gets.c

9 lines
119 B
C
Executable File

#include <stdio.h>
#include "stdio_private.h"
char * gets(char *str, int size)
{
return(fgets(str, size, stdin));
}