summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/realloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/realloc.c b/lib/realloc.c
index d0d3e4ab0..573712108 100644
--- a/lib/realloc.c
+++ b/lib/realloc.c
@@ -1,5 +1,5 @@
/* Work around bug on some systems where realloc (NULL, 0) fails.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
#endif
#undef realloc
-#include <sys/types.h>
+#include <stddef.h>
char *malloc ();
char *realloc ();