Rename error_*.h -> scheme_compiler_*.h

This commit is contained in:
Lassi Kortela 2019-08-27 00:46:45 +03:00
parent b989d60bcd
commit 9409096c0a
5 changed files with 4 additions and 4 deletions

View File

@ -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__