internerr.c 285 B

123456789101112
  1. /* $Id$ */
  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. void C_internal_error()
  8. {
  9. sys_write(STDERR,"internal error\n",15);
  10. sys_stop(S_EXIT);
  11. }