Whoops; it was \201, not \371.
[gnulib.git] / lib / realloc.c
index 2a39033..5c94a0a 100644 (file)
@@ -1,4 +1,4 @@
-/* Work around bug on some systems where realloc (NULL, n) fails.
+/* Work around bug on some systems where realloc (NULL, 0) fails.
    Copyright (C) 1997 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
@@ -22,7 +22,7 @@
 #endif
 #undef realloc
 
-#include <sys/types.h>
+#include <stddef.h>
 
 char *malloc ();
 char *realloc ();