From 9409096c0a08057e431c45f0b2d80c3520af981e Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Tue, 27 Aug 2019 00:46:45 +0300 Subject: [PATCH] Rename error_*.h -> scheme_compiler_*.h --- c/scheme.h | 8 ++++---- c/{error_dmc.h => scheme_compiler_dmc.h} | 0 c/{error_gnuc.h => scheme_compiler_gnuc.h} | 0 c/{error_msc.h => scheme_compiler_msc.h} | 0 c/{error_watcomc.h => scheme_compiler_watcomc.h} | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename c/{error_dmc.h => scheme_compiler_dmc.h} (100%) rename c/{error_gnuc.h => scheme_compiler_gnuc.h} (100%) rename c/{error_msc.h => scheme_compiler_msc.h} (100%) rename c/{error_watcomc.h => scheme_compiler_watcomc.h} (100%) diff --git a/c/scheme.h b/c/scheme.h index a916eac..40ac800 100644 --- a/c/scheme.h +++ b/c/scheme.h @@ -28,19 +28,19 @@ typedef intptr_t fixnum_t; #endif #ifdef __DMC__ -#include "error_dmc.h" +#include "scheme_compiler_dmc.h" #endif #ifdef __GNUC__ -#include "error_gnuc.h" +#include "scheme_compiler_gnuc.h" #endif #ifdef _MSC_VER -#include "error_msc.h" +#include "scheme_compiler_msc.h" #endif #ifdef __WATCOMC__ -#include "error_watcomc.h" +#include "scheme_compiler_watcomc.h" #endif #ifdef __WATCOMC__ diff --git a/c/error_dmc.h b/c/scheme_compiler_dmc.h similarity index 100% rename from c/error_dmc.h rename to c/scheme_compiler_dmc.h diff --git a/c/error_gnuc.h b/c/scheme_compiler_gnuc.h similarity index 100% rename from c/error_gnuc.h rename to c/scheme_compiler_gnuc.h diff --git a/c/error_msc.h b/c/scheme_compiler_msc.h similarity index 100% rename from c/error_msc.h rename to c/scheme_compiler_msc.h diff --git a/c/error_watcomc.h b/c/scheme_compiler_watcomc.h similarity index 100% rename from c/error_watcomc.h rename to c/scheme_compiler_watcomc.h