*** empty log message ***
[libfirm] / ir / adt / fourcc.h
index f8bc5ff..8b5a7cb 100644 (file)
 #ifndef _FOURCC_H
 #define _FOURCC_H
 
-#include "firm_config.h"
-
-/* define an always readable fourcc code */
-#ifdef WORDS_BIGENDIAN
-#define FOURCC(a,b,c,d)         ((d) | ((c) << 8) | ((b) << 16) | ((a) << 24))
-#else
+/** define a readable fourcc code */
 #define FOURCC(a,b,c,d)         ((a) | ((b) << 8) | ((c) << 16) | ((d) << 24))
-#endif
 
 #endif /* _FOURCC_H */