summaryrefslogtreecommitdiff
path: root/include/glob.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-10-07 16:56:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-10-07 16:56:12 +0000
commite4e06c6f2ed141678350da27a9c1509871398cc2 (patch)
tree3ae3ea5c58e92ca4f4ac327f481456748603614e /include/glob.h
parentd73bed381aa914f36eaf6400fc66a62a03bb20dd (diff)
GLOB_NOESCAPE is POSIX so move it out of the #ifndef _POSIX_SOURCE block.
Diffstat (limited to 'include/glob.h')
-rw-r--r--include/glob.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/glob.h b/include/glob.h
index ae6d5f181b6..5c9e7465405 100644
--- a/include/glob.h
+++ b/include/glob.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: glob.h,v 1.8 2003/06/02 19:34:12 millert Exp $ */
+/* $OpenBSD: glob.h,v 1.9 2004/10/07 16:56:11 millert Exp $ */
/* $NetBSD: glob.h,v 1.5 1994/10/26 00:55:56 cgd Exp $ */
/*
@@ -69,6 +69,7 @@ typedef struct {
#define GLOB_MARK 0x0008 /* Append / to matching directories. */
#define GLOB_NOCHECK 0x0010 /* Return pattern itself if nothing matches. */
#define GLOB_NOSORT 0x0020 /* Don't sort. */
+#define GLOB_NOESCAPE 0x1000 /* Disable backslash escaping. */
#ifndef _POSIX_SOURCE
#define GLOB_ALTDIRFUNC 0x0040 /* Use alternately specified directory funcs. */
@@ -77,7 +78,6 @@ typedef struct {
#define GLOB_NOMAGIC 0x0200 /* GLOB_NOCHECK without magic chars (csh). */
#define GLOB_QUOTE 0x0400 /* Quote special chars with \. */
#define GLOB_TILDE 0x0800 /* Expand tilde names from the passwd file. */
-#define GLOB_NOESCAPE 0x1000 /* Disable backslash escaping. */
#define GLOB_LIMIT 0x2000 /* Limit pattern match output to ARG_MAX */
#endif