0ac16f6116
+ Addition of function prototypes. + Change function definitions to ANSI C style. + Convert to sed scripts some shell scripts for better portability. + Reduce usage of em_path.h
15 lines
328 B
C
15 lines
328 B
C
/* $Id$ */
|
|
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "system.h"
|
|
|
|
void C_internal_error(void)
|
|
{
|
|
sys_write(STDERR,"internal error\n",15);
|
|
sys_stop(S_EXIT);
|
|
}
|