ftp.nice.ch/pub/next/unix/graphics/urt.3.0.s.tar.gz#/urt.3.0.s/include/exit_status.h

This is exit_status.h in view mode; [Download] [Up]

#ifndef EXIT_STATUS_DEFINED

#define EXIT_STATUS_DEFINED

#ifdef __STDC__

#   define EXIT_STATUS_SUCCESS  0
#   define EXIT_STATUS_FAILURE  1

#else

#   ifdef VMS
#       define EXIT_STATUS_SUCCESS      (1 | 0x10000000)
#       define EXIT_STATUS_FAILURE      (0 | 0x10000000)
#   else
#       define EXIT_STATUS_SUCCESS      0
#       define EXIT_STATUS_FAILURE      1
#   endif

#endif


#endif

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.