From 1226330375edaa95ae71638f1d78e931de32b500 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Thu, 7 Sep 2023 14:55:41 +0200 Subject: [PATCH] fatal_exit() isn't so tied to GUI --- Makefile | 2 +- src/{x48_errors.c => error_handling.c} | 0 src/{x48_errors.h => error_handling.h} | 0 src/x48.c | 2 +- src/x48_resources.c | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) rename src/{x48_errors.c => error_handling.c} (100%) rename src/{x48_errors.h => error_handling.h} (100%) diff --git a/Makefile b/Makefile index 31a8ab0..4d893e7 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ DOTOS = src/main.o \ src/options.o \ src/romio.o \ src/timer.o \ - src/x48_errors.o \ + src/error_handling.o \ src/x48_resources.o \ src/x48.o diff --git a/src/x48_errors.c b/src/error_handling.c similarity index 100% rename from src/x48_errors.c rename to src/error_handling.c diff --git a/src/x48_errors.h b/src/error_handling.h similarity index 100% rename from src/x48_errors.h rename to src/error_handling.h diff --git a/src/x48.c b/src/x48.c index 0f09a39..885fbc2 100644 --- a/src/x48.c +++ b/src/x48.c @@ -16,7 +16,7 @@ #include "hp48.h" #include "romio.h" #include "x48.h" -#include "x48_errors.h" +#include "error_handling.h" #include "x48_resources.h" disp_t disp; diff --git a/src/x48_resources.c b/src/x48_resources.c index e2e2498..3bba85a 100644 --- a/src/x48_resources.c +++ b/src/x48_resources.c @@ -5,7 +5,7 @@ #include #include "options.h" -#include "x48_errors.h" +#include "error_handling.h" #include "x48_resources.h" #if defined( GUI_IS_X11 )