2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-13 16:41:19 +08:00

* readrecord.c: Include <sys/types.h> for off_t.

From-SVN: r24467
This commit is contained in:
Rainer Orth 1999-01-03 20:07:56 +00:00 committed by Jeff Law
parent 9d6b41f3f1
commit d670fb27a0
2 changed files with 6 additions and 1 deletions

@ -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

@ -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"