From: Hallvard Furuseth Date: Sun, 1 Aug 1999 21:18:38 +0000 (+0000) Subject: Define EXIT_SUCCESS and EXIT_FAILURE if necessary X-Git-Tag: TWEB_OL_BASE~339 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e259fc72e0defa0f8514f4b71e49adb5e5001616;p=openldap Define EXIT_SUCCESS and EXIT_FAILURE if necessary --- diff --git a/include/ac/stdlib.h b/include/ac/stdlib.h index 929afafd11..505b30b5cf 100644 --- a/include/ac/stdlib.h +++ b/include/ac/stdlib.h @@ -19,4 +19,9 @@ # include # endif +# ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +# define EXIT_FAILURE 1 +# endif + #endif /* _AC_STDLIB_H */