summaryrefslogtreecommitdiff
path: root/stdio-common/xbug.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-01-30 21:20:32 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-01-30 21:20:32 +0000
commitc8a89e7dd5cab24242cc9050387bd5bb902da11a (patch)
tree7aeca9797fb026f8df75c8285e3a1bfed6180da7 /stdio-common/xbug.c
parent3b1004624e54cc2fefd034ff80d5dea4b6db764f (diff)
Remove miscellaneous __STDC__ conditionals.
Diffstat (limited to 'stdio-common/xbug.c')
-rw-r--r--stdio-common/xbug.c2
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