This is die.c in view mode; [Download] [Up]
#include <stdio.h> char errmsg[60]; dies(s,t) char *s, *t; { sprintf(errmsg,s,t); die(errmsg); } die(s) char *s; { fprintf(stderr,"%s\n",s); exit(1); }
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.