/* FILE       : alloc.h
 * WRITTEN BY : Craig Morgenstern
 *
 * Calls malloc with argument s.  If malloc is unsuccessful, then
 * alloc prints an error message to stderr and does an exit 0.
 */

char *alloc(/* s */);
/*
 * unsigned s;
 */
