diff options
Diffstat (limited to 'gdb/gdb_dirent.h')
-rw-r--r-- | gdb/gdb_dirent.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gdb/gdb_dirent.h b/gdb/gdb_dirent.h index 9cb4006..eb14767 100644 --- a/gdb/gdb_dirent.h +++ b/gdb/gdb_dirent.h @@ -1,5 +1,5 @@ -/* Portable <dirent.h> - Copyright 2000 Free Software Foundation, Inc. +/* Portable <dirent.h>. + Copyright 2000, 2002 Free Software Foundation, Inc. This file is part of GDB. @@ -18,14 +18,16 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#if !defined(GDB_DIRENT_H) -#define GDB_DIRENT_H - -/* From bfd/hpux-core.c. */ +#ifndef GDB_DIRENT_H +#define GDB_DIRENT_H 1 +/* See description of `AC_HEADER_DIRENT' in the Autoconf manual. */ #ifdef HAVE_DIRENT_H # include <dirent.h> +# define NAMELEN(dirent) strlen((dirent)->d_name) #else +# define dirent direct +# define NAMELEN(dirent) (dirent)->d_namelen # ifdef HAVE_SYS_NDIR_H # include <sys/ndir.h> # endif @@ -37,4 +39,4 @@ # endif #endif -#endif /* !defined(GDB_DIRENT_H) */ +#endif /* not GDB_DIRENT_H */ |