From fc517f37630d14dc3db61503fd29ba44caacf9a0 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Wed, 11 Feb 1998 09:10:52 +0000 Subject: [PATCH] Added typedefs for s64 and u64. Bumped version to 1.1. --- lib/config.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/config.h b/lib/config.h index 3c06a470..a699aa22 100644 --- a/lib/config.h +++ b/lib/config.h @@ -1,7 +1,7 @@ /* * Sherlock Library -- Configuration-Dependent Definitions * - * (c) 1997 Martin Mares, + * (c) 1997, 1998 Martin Mares, */ #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 -- 2.39.2