aboutsummaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
authorPer Bothner <bothner@gcc.gnu.org>1993-10-13 11:02:41 -0700
committerPer Bothner <bothner@gcc.gnu.org>1993-10-13 11:02:41 -0700
commit49d3ca5c88c8d002bc7fc61247694a2e45671b36 (patch)
treeb3198faef4d9cba34722eb4fce1cbaba6cc7093d /gcc/fix-header.c
parentd5cbc4a344f877fc8c1b002c4d14a7964daaf29b (diff)
downloadgcc-49d3ca5c88c8d002bc7fc61247694a2e45671b36.zip
gcc-49d3ca5c88c8d002bc7fc61247694a2e45671b36.tar.gz
gcc-49d3ca5c88c8d002bc7fc61247694a2e45671b36.tar.bz2
include <sys/types.h> before <sys/stat.h>.
From-SVN: r5772
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 d043729..493de58 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