diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/xbug.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stdio-common/xbug.c b/stdio-common/xbug.c index a04bfc4fd0..76a8c54726 100644 --- a/stdio-common/xbug.c +++ b/stdio-common/xbug.c @@ -8,11 +8,9 @@ typedef struct _Buffer { int room, used; } Buffer; -#if __STDC__ - 0 void InitBuffer (Buffer *b); void AppendToBuffer (register Buffer *b, const char *str, register int len); void ReadFile (register Buffer *buffer, FILE *input); -#endif #define INIT_BUFFER_SIZE 10000 |