psx emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
226 B

  1. #include "util.h"
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. void fatal(const char *fmt, ...) {
  6. va_list args;
  7. va_start(args, fmt);
  8. vfprintf(stderr, fmt, args);
  9. va_end(args);
  10. exit(EXIT_FAILURE);
  11. }