Rename error_*.h -> scheme_compiler_*.h
This commit is contained in:
parent
b989d60bcd
commit
9409096c0a
|
@ -28,19 +28,19 @@ typedef intptr_t fixnum_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __DMC__
|
#ifdef __DMC__
|
||||||
#include "error_dmc.h"
|
#include "scheme_compiler_dmc.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#include "error_gnuc.h"
|
#include "scheme_compiler_gnuc.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#include "error_msc.h"
|
#include "scheme_compiler_msc.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __WATCOMC__
|
#ifdef __WATCOMC__
|
||||||
#include "error_watcomc.h"
|
#include "scheme_compiler_watcomc.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __WATCOMC__
|
#ifdef __WATCOMC__
|
||||||
|
|
Loading…
Reference in New Issue