summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-09-01 18:44:24 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-09-01 18:44:24 +0000
commit98fdcd6e7eb29925a69b8a6b1b662280df58d295 (patch)
treef4a8d5bb99441bc786874de129bb2a644aa1b679
parent80cc4c3f548f337fce6264beaf22ea9ad438c092 (diff)
#define GLOB_ABEND to GLOB_ABORTED for backwards compat. Noted by Theo.
-rw-r--r--include/glob.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/glob.h b/include/glob.h
index 8c3771b4a52..7c5e677e01a 100644
--- a/include/glob.h
+++ b/include/glob.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: glob.h,v 1.2 1997/09/01 18:40:35 millert Exp $ */
+/* $OpenBSD: glob.h,v 1.3 1997/09/01 18:44:23 millert Exp $ */
/* $NetBSD: glob.h,v 1.5 1994/10/26 00:55:56 cgd Exp $ */
/*
@@ -88,6 +88,7 @@ typedef struct {
#define GLOB_ABORTED (-2) /* Unignored error. */
#define GLOB_NOMATCH (-3) /* No match and GLOB_NOCHECK not set. */
#define GLOB_NOSYS (-4) /* Function not supported. */
+#define GLOB_ABEND GLOB_ABORTED
__BEGIN_DECLS
int glob __P((const char *, int, int (*)(const char *, int), glob_t *));