summaryrefslogtreecommitdiff
path: root/stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdafx.h')
-rw-r--r--stdafx.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/stdafx.h b/stdafx.h
index 982c71cf4..22c7024c1 100644
--- a/stdafx.h
+++ b/stdafx.h
@@ -116,8 +116,12 @@ int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap);
#if defined(WIN32) || defined(__OS2__)
#define TTD_LITTLE_ENDIAN
#else
-// Else include endian.h, which has the endian-type, autodetected by the Makefile
- #include "endian.h"
+// Else include endian[target/host].h, which has the endian-type, autodetected by the Makefile
+ #if defined(STRGEN)
+ #include "endian_host.h"
+ #else
+ #include "endian_target.h"
+ #endif
#endif
#if defined(UNIX)