From: Ken Raeburn Date: Fri, 12 Mar 1993 02:29:11 +0000 (+0000) Subject: Define EXIT_SUCCESS and EXIT_FAILURE if not already defined. X-Git-Tag: gdb-4_18-branchpoint~19924 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f3ec63c251493544c665f1a52d884f87787f5171;p=thirdparty%2Fbinutils-gdb.git Define EXIT_SUCCESS and EXIT_FAILURE if not already defined. --- diff --git a/gas/config/ho-vms.h b/gas/config/ho-vms.h index ec7dc9e1868..c4e941c5137 100644 --- a/gas/config/ho-vms.h +++ b/gas/config/ho-vms.h @@ -27,4 +27,9 @@ /* We need this to make sure that sys_nerr has the right Psect hack. */ #include +#ifndef EXIT_SUCCESS +#define EXIT_SUCCESS 1 +#define EXIT_FAILURE 0 +#endif + /* end of ho-vms.h */