# HG changeset patch
# User greg
# Date 1182926122 -7200
# Node ID c6e9fc22de5c524f3cbb9cd620507c42144b5154
# Parent  f76c64f6609796ce2d1008731dbd769f20560233
add datatypes translation (define)

diff -r f76c64f66097 -r c6e9fc22de5c include/unix/applicfg.h
--- a/include/unix/applicfg.h	Mon Jun 25 17:01:39 2007 +0200
+++ b/include/unix/applicfg.h	Wed Jun 27 08:35:22 2007 +0200
@@ -48,22 +48,22 @@
 /* Integers */
 #define INTEGER8 char
 #define INTEGER16 short
-#define INTEGER24
+#define INTEGER24 long
 #define INTEGER32 long
-#define INTEGER40
-#define INTEGER48
-#define INTEGER56
-#define INTEGER64
+#define INTEGER40 long long
+#define INTEGER48 long long
+#define INTEGER56 long long
+#define INTEGER64 long long
 
 /* Unsigned integers */
 #define UNS8   unsigned char
 #define UNS16  unsigned short
 #define UNS32  unsigned long
-#define UNS24
-#define UNS40
-#define UNS48
-#define UNS56
-#define UNS64 
+#define UNS24  unsigned long
+#define UNS40  unsigned long long
+#define UNS48  unsigned long long
+#define UNS56  unsigned long long
+#define UNS64  unsigned long long
 
 /* Reals */
 #define REAL32	float