From f8fcb08913209770f0c5e2fe7c7ee1897369d2c9 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 9 Jul 2000 03:53:36 +0000 Subject: Fixed dir/dirent -Erik --- include/sys/dir.h | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) (limited to 'include/sys/dir.h') diff --git a/include/sys/dir.h b/include/sys/dir.h index 1c2cea7df..96b36c78d 100644 --- a/include/sys/dir.h +++ b/include/sys/dir.h @@ -1,17 +1,28 @@ -#ifdef _SYS_DIRENT_H -#error "Can't include both sys/dir.h and sys/dirent.h" -#define _SYS_DIR_H -#endif +/* Copyright (C) 1991, 1996 Free Software Foundation, Inc. + This file is part of the GNU C Library. -#ifndef _SYS_DIR_H -#define _SYS_DIR_H + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. -#include + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#ifndef _SYS_DIR_H +#define _SYS_DIR_H 1 -#define direct dirent +#include + +#include -#undef DIRSIZ -#define DIRSIZ(dp) ((sizeof (struct direct) - (MAXNAMLEN+1)) + \ - (((dp)->d_namlen+1 + 3) &~ 3)) +#define direct dirent -#endif +#endif /* sys/dir.h */ -- cgit v1.2.3