diff options
author | Jim Meyering <jim@meyering.net> | 1999-07-30 19:29:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-07-30 19:29:27 +0000 |
commit | a765a451e6b0dc31fb9d4baecfd898b26511331c (patch) | |
tree | eb383c4e53c8751772d4056790cdb26d204f90df | |
parent | e246ae876550f07bde562fb668b0773ef8220745 (diff) | |
download | coreutils-a765a451e6b0dc31fb9d4baecfd898b26511331c.tar.xz |
Include <sys/types.h> now that linebuffer.h uses
size_t. This is required on at least SunOS4. From Kaveh Ghazi.
-rw-r--r-- | lib/linebuffer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/linebuffer.c b/lib/linebuffer.c index d129d307d..cb0b6ba00 100644 --- a/lib/linebuffer.c +++ b/lib/linebuffer.c @@ -22,6 +22,7 @@ #endif #include <stdio.h> +#include <sys/types.h> #include "linebuffer.h" char *xmalloc (); |