Pristine Ack-5.5
[Ack-5.5.git] / modules / src / alloc / No_Mem.c
1 /* $Id: No_Mem.c,v 1.8 1994/06/24 11:06:23 ceriel Exp $ */
2 /*
3  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
4  * See the copyright notice in the ACK home directory, in the file "Copyright".
5  */
6 #include        <system.h>
7 #include        "alloc.h"
8
9 void
10 No_Mem()
11 {
12         sys_write(STDERR, "Out of memory\n", 14);
13         sys_stop(S_EXIT);
14 }