* file-type.c: Include file-type.h first.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 28 Apr 2005 16:48:14 +0000 (16:48 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 28 Apr 2005 16:48:14 +0000 (16:48 +0000)
* filetype.h: Don't assume <sys/stat.h> was included first.

lib/file-type.c
lib/file-type.h

index 6c25e77ba3ca3eb970fa8bcaa35f65c06cb53a70..93fff71b18a07f7e6c63eb8ac7a7b81e2f18c660 100644 (file)
@@ -1,6 +1,7 @@
 /* Return a string describing the type of a file.
 
-   Copyright (C) 1993, 1994, 2001, 2002, 2004 Free Software Foundation, Inc.
+   Copyright (C) 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+   Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -22,9 +23,8 @@
 # include <config.h>
 #endif
 
-#include <sys/types.h>
-#include <sys/stat.h>
 #include "file-type.h"
+
 #include "stat-macros.h"
 
 #include <gettext.h>
index afe2f9444fe5e545c6d76d172f3616511df790fd..ebbe95b4f3c2ee84386fc3592bd9c41407ab8d32 100644 (file)
@@ -1,6 +1,7 @@
 /* Return a string describing the type of a file.
 
-   Copyright (C) 1993, 1994, 2001, 2002, 2004 Free Software Foundation, Inc.
+   Copyright (C) 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+   Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -21,6 +22,9 @@
 #ifndef FILE_TYPE_H
 # define FILE_TYPE_H 1
 
+# include <sys/types.h>
+# include <sys/stat.h>
+
 char const *file_type (struct stat const *);
 
 #endif /* FILE_TYPE_H */