diff options
author | Fred Fish <fnf@specifix.com> | 1991-11-19 18:54:38 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1991-11-19 18:54:38 +0000 |
commit | f30114ea7b11f13812ffa026886f4fe9f96e11ab (patch) | |
tree | 1668b234e40bce95accf381ad7bd25a0d6eb7933 /readline/readline.c | |
parent | d018c8a6e1c03b8f220445f9de5af8ba4b3a4199 (diff) | |
download | gdb-f30114ea7b11f13812ffa026886f4fe9f96e11ab.zip gdb-f30114ea7b11f13812ffa026886f4fe9f96e11ab.tar.gz gdb-f30114ea7b11f13812ffa026886f4fe9f96e11ab.tar.bz2 |
Change SYSV to USG to match current usage in source. Add USGr4 to list
of defines to check for to use <dirent.h> style directory access.
Diffstat (limited to 'readline/readline.c')
-rw-r--r-- | readline/readline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/readline/readline.c b/readline/readline.c index f4ae40e..817ef97 100644 --- a/readline/readline.c +++ b/readline/readline.c @@ -119,7 +119,7 @@ struct passwd *getpwuid (), *getpwent (); /* #define HACK_TERMCAP_MOTION */ -#if defined (_POSIX_VERSION) || defined (USGr3) +#if defined (_POSIX_VERSION) || defined (USGr3) || defined (USGr4) # include <dirent.h> # define direct dirent # if defined (_POSIX_VERSION) |