diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 17:16:48 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 17:16:48 +0000 |
commit | a82553e664ea8c072bfd09ef9b126ebd5a93ffd8 (patch) | |
tree | a23fab26f52756063ac838d88233271654f34ac0 /libdiskfs/dir-lookup.c | |
parent | 466e99688eb37179ef13dfcee6c1f29b662f40a0 (diff) |
<stdio.h>:
New include.
Diffstat (limited to 'libdiskfs/dir-lookup.c')
-rw-r--r-- | libdiskfs/dir-lookup.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libdiskfs/dir-lookup.c b/libdiskfs/dir-lookup.c index c8138254..36f2bceb 100644 --- a/libdiskfs/dir-lookup.c +++ b/libdiskfs/dir-lookup.c @@ -15,13 +15,15 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include "priv.h" -#include "fs_S.h" +#include <stdio.h> #include <fcntl.h> #include <string.h> #include <hurd/fsys.h> #include <hurd/paths.h> +#include "priv.h" +#include "fs_S.h" + /* XXX - Temporary hack; this belongs in a header file, probably types.h. */ #define major(x) ((int)(((unsigned) (x) >> 8) & 0xff)) #define minor(x) ((int)((x) & 0xff)) |