diff --git a/programs/develop/ktcc/trunk/libc.obj/source/stdio/fgets.c b/programs/develop/ktcc/trunk/libc.obj/source/stdio/fgets.c index 300ae09f7d..89f99e9c54 100644 --- a/programs/develop/ktcc/trunk/libc.obj/source/stdio/fgets.c +++ b/programs/develop/ktcc/trunk/libc.obj/source/stdio/fgets.c @@ -11,14 +11,8 @@ char *fgets(char *str, int n, FILE *stream) return NULL; } - while (i #include -#define LONG_MIN (-2147483647L-1) -#define LONG_MAX (2147483647L) -#define ULONG_MAX (4294967295UL) - - int getdigit(char ch, int base) { if (isdigit(ch)) ch-= '0';