read.c 400 B

12345678910111213141516171819
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. #include <stdio.h>
  6. #include <out.h>
  7. #include "const.h"
  8. #include "assert.h"
  9. #include "debug.h"
  10. #include "arch.h"
  11. #include "memory.h"
  12. #include "defs.h"
  13. int infile; /* The current input file. */
  14. void rd_fatal()
  15. {
  16. fatal("read error");
  17. }