summaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1993-10-13 18:02:41 +0000
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1993-10-13 18:02:41 +0000
commita447945795a6ae8ee874d97ee247cf56396d9225 (patch)
treeb3198faef4d9cba34722eb4fce1cbaba6cc7093d /gcc/fix-header.c
parentb82680c7e8150f6cb633888fa8974c64a97ff175 (diff)
downloadgcc-a447945795a6ae8ee874d97ee247cf56396d9225.tar.gz
include <sys/types.h> before <sys/stat.h>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5772 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r--gcc/fix-header.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index d0437298561..493de58e5f8 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -73,8 +73,8 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
#include <ctype.h>
-#include <sys/stat.h>
#include <sys/types.h>
+#include <sys/stat.h>
#ifndef O_RDONLY
#define O_RDONLY 0
#endif