]> mj.ucw.cz Git - libucw.git/blobdiff - lib/config.h
Implemented the URL regex replace mechanism.
[libucw.git] / lib / config.h
index 8b09c820d3551c688150a1e3f789fa85d944c491..62ef1af356452fe52374ae3e6a47bc91f3feab24 100644 (file)
@@ -18,6 +18,14 @@ typedef unsigned int ulg;            /* exactly 32 bits, unsigned */
 typedef int slg;                       /* exactly 32 bits, signed */
 typedef unsigned int uns;              /* at least 32 bits */
 
+/* CPU characteristics */
+
+#define CPU_LITTLE_ENDIAN
+#undef CPU_BIG_ENDIAN
+#define CPU_CAN_DO_UNALIGNED_WORDS
+#define CPU_CAN_DO_UNALIGNED_LONGS
+#define CPU_STRUCT_ALIGN 4
+
 /* Misc */
 
 #ifdef __GNUC__