]> mj.ucw.cz Git - libucw.git/commitdiff
Added typedefs for s64 and u64.
authorMartin Mares <mj@ucw.cz>
Wed, 11 Feb 1998 09:10:52 +0000 (09:10 +0000)
committerMartin Mares <mj@ucw.cz>
Wed, 11 Feb 1998 09:10:52 +0000 (09:10 +0000)
Bumped version to 1.1.

lib/config.h

index 3c06a4700efe87ab55ef2d534ddcdc81f5976540..a699aa22c1fc46a614746be3ae6467f3774ef66d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     Sherlock Library -- Configuration-Dependent Definitions
  *
- *     (c) 1997 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
+ *     (c) 1997, 1998 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
  */
 
 #ifndef _SHERLOCK_CONFIG_H
@@ -9,7 +9,7 @@
 
 /* Version */
 
-#define SHER_VER "1.0"
+#define SHER_VER "1.1"
 
 /* Types */
 
@@ -20,6 +20,8 @@ typedef short sword;                  /* exactly 16 bits, signed */
 typedef unsigned int ulg;              /* exactly 32 bits, unsigned */
 typedef int slg;                       /* exactly 32 bits, signed */
 typedef unsigned int uns;              /* at least 32 bits */
+typedef unsigned long long int u64;    /* exactly 64 bits, unsigned */
+typedef long long int s64;             /* exactly 64 bits, signed */
 
 #ifndef NULL
 #define NULL (void *)0