mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-05-07 18:36:09 +08:00
16 lines
513 B
C
16 lines
513 B
C
|
|
#ifndef __ISP_UTILS_V4_MISC_INFORMATIONAL_H
|
|
#define __ISP_UTILS_V4_MISC_INFORMATIONAL_H
|
|
|
|
/* informational #defines that may or may not have any effect on the data type,
|
|
* but serve as help for the programmer */
|
|
|
|
/* Endianness reminders & markers.
|
|
* And someday, when compiling for, say, PowerPC, it will map
|
|
* to whatever native datatype typedefs that tell PowerPC what endianness to use */
|
|
#define _Little_Endian_
|
|
#define _Big_Endian_
|
|
#define _Mixed_Endian_
|
|
|
|
#endif /* __ISP_UTILS_V4_MISC_INFORMATIONAL_H */
|