xref: /csrg-svn/usr.bin/pascal/libpc/HALT.c (revision 62092)
140865Sbostic /*-
2*62092Sbostic  * Copyright (c) 1979, 1993
3*62092Sbostic  *	The Regents of the University of California.  All rights reserved.
440865Sbostic  *
540865Sbostic  * %sccs.include.redist.c%
640865Sbostic  */
71657Smckusick 
840865Sbostic #ifndef lint
9*62092Sbostic static char sccsid[] = "@(#)HALT.c	8.1 (Berkeley) 06/06/93";
1040865Sbostic #endif /* not lint */
111657Smckusick 
123871Smckusic #include "h00vars.h"
131657Smckusick 
HALT()141657Smckusick HALT()
151657Smckusick {
163871Smckusic 		PFLUSH();
173871Smckusic 		fputs("Call to procedure halt\n", stderr);
183867Smckusic 		PCEXIT(0);
191657Smckusick }
20