fatal_exit() isn't so tied to GUI

This commit is contained in:
Gwenhael Le Moine 2023-09-07 14:55:41 +02:00
parent 1f5924b73a
commit 1226330375
No known key found for this signature in database
GPG key ID: FDFE3669426707A7
5 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ DOTOS = src/main.o \
src/options.o \ src/options.o \
src/romio.o \ src/romio.o \
src/timer.o \ src/timer.o \
src/x48_errors.o \ src/error_handling.o \
src/x48_resources.o \ src/x48_resources.o \
src/x48.o src/x48.o

View file

@ -16,7 +16,7 @@
#include "hp48.h" #include "hp48.h"
#include "romio.h" #include "romio.h"
#include "x48.h" #include "x48.h"
#include "x48_errors.h" #include "error_handling.h"
#include "x48_resources.h" #include "x48_resources.h"
disp_t disp; disp_t disp;

View file

@ -5,7 +5,7 @@
#include <ctype.h> #include <ctype.h>
#include "options.h" #include "options.h"
#include "x48_errors.h" #include "error_handling.h"
#include "x48_resources.h" #include "x48_resources.h"
#if defined( GUI_IS_X11 ) #if defined( GUI_IS_X11 )