This is errormsg.h in view mode; [Download] [Up]
/* * errormsg.h */ #ifndef _error_ #define _error_ #include <errno.h> /* for definition of errno */ #include <stdarg.h> /* ANSI C header file */ #define ERRMSG_C_STRLEN ((size_t) 1024) extern void err_ret(const char *fmt, ...); /* * Fatal error related to a system call. Print a message and terminate. */ extern void err_sys(const char *fmt, ...); /* * Fatal error related to a system call. Print a message, dump core, * and terminate. */ extern void err_dump(const char *fmt, ...); /* * Nonfatal error unrelated to a system call. Print a message and return. */ extern void err_msg(const char *fmt, ...); /* * Fatal error unrelated to a system call. Print a message and terminate. */ extern void err_quit(const char *fmt, ...); #endif
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.