diff options
Diffstat (limited to 'posix/wordexp.h')
-rw-r--r-- | posix/wordexp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/posix/wordexp.h b/posix/wordexp.h index 6fa02b78c4..cd5fba9b41 100644 --- a/posix/wordexp.h +++ b/posix/wordexp.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1996, 1997 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -47,6 +47,9 @@ typedef struct /* Possible nonzero return values from `wordexp'. */ enum { +#ifdef __USE_UNIX98 + WRDE_NOSYS = -1, /* Never used since we support `wordexp'. */ +#endif WRDE_NOSPACE = 1, /* Ran out of memory. */ WRDE_BADCHAR, /* A metachar appears in the wrong place. */ WRDE_BADVAL, /* Undefined var reference with WRDE_UNDEF. */ |