From 55f2ba9f9409e79242b55fd69dfc5237a53f1bf1 Mon Sep 17 00:00:00 2001 From: millert <> Date: Mon, 1 Sep 1997 18:44:23 +0000 Subject: [PATCH] #define GLOB_ABEND to GLOB_ABORTED for backwards compat. Noted by Theo. --- src/include/glob.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/glob.h b/src/include/glob.h index 8c3771b4..7c5e677e 100644 --- a/src/include/glob.h +++ b/src/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 *));