diff options
Diffstat (limited to 'libiberty/spaces.c')
-rw-r--r-- | libiberty/spaces.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libiberty/spaces.c b/libiberty/spaces.c index bfead7ed..6df0b13 100644 --- a/libiberty/spaces.c +++ b/libiberty/spaces.c @@ -37,13 +37,12 @@ valid until at least the next call. #include <unixlib.h> #else /* For systems with larger pointers than ints, these must be declared. */ -extern PTR malloc PARAMS ((size_t)); -extern void free PARAMS ((PTR)); +extern PTR malloc (size_t); +extern void free (PTR); #endif const char * -spaces (count) - int count; +spaces (int count) { register char *t; static char *buf; |