aboutsummaryrefslogtreecommitdiff
path: root/libchill
diff options
context:
space:
mode:
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>1999-01-03 20:07:56 +0000
committerJeff Law <law@gcc.gnu.org>1999-01-03 13:07:56 -0700
commitd670fb27a0477b767e8b35b904f8f77925bba160 (patch)
tree02009f187974e93c3f9c84828f1777a0f90190f3 /libchill
parent9d6b41f3f1a01a875952a75e555061ec42f49ee2 (diff)
downloadgcc-d670fb27a0477b767e8b35b904f8f77925bba160.zip
gcc-d670fb27a0477b767e8b35b904f8f77925bba160.tar.gz
gcc-d670fb27a0477b767e8b35b904f8f77925bba160.tar.bz2
* readrecord.c: Include <sys/types.h> for off_t.
From-SVN: r24467
Diffstat (limited to 'libchill')
-rw-r--r--libchill/ChangeLog4
-rw-r--r--libchill/readrecord.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/libchill/ChangeLog b/libchill/ChangeLog
index 672a594..6b67f73 100644
--- a/libchill/ChangeLog
+++ b/libchill/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jan 3 21:04:53 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
+
+ * readrecord.c: Include <sys/types.h> for off_t.
+
1998-11-26 Manfred Hollstein <manfred@s-direktnet.de>
* configure.in (compiler_name): Add check to detect if this
diff --git a/libchill/readrecord.c b/libchill/readrecord.c
index eeb5709..2af42cf 100644
--- a/libchill/readrecord.c
+++ b/libchill/readrecord.c
@@ -1,5 +1,5 @@
/* Implement Input/Output runtime actions for CHILL.
- Copyright (C) 1992,1993 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1993, 1998 Free Software Foundation, Inc.
Author: Wilfried Moser, et al
This file is part of GNU CC.
@@ -28,6 +28,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <setjmp.h>
#include <stdlib.h>
#include <errno.h>
+#include <sys/types.h>
#include <unistd.h>
#include "fileio.h"