From: Jim Meyering <jim@meyering.net>
Date: Fri, 30 Jul 1999 19:29:27 +0000 (+0000)
Subject: Include <sys/types.h> now that linebuffer.h uses
X-Git-Tag: TEXTUTILS-1_22o~2
X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=d59ff2bd82d9ab0053d740ebc25736c9804d4520;p=gnulib.git

Include <sys/types.h> now that linebuffer.h uses
size_t.  This is required on at least SunOS4.  From Kaveh Ghazi.
---

diff --git a/lib/linebuffer.c b/lib/linebuffer.c
index d129d307d6..cb0b6ba002 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 ();