From 6416a1bd3806bb76e4af99af2c11c2b69b8c1e85 Mon Sep 17 00:00:00 2001 From: "roeber%netscape.com" Date: Tue, 9 May 2000 18:57:58 +0000 Subject: [PATCH] Adding CK_USHORT back in, for pedantic tests' sake --- security/nss/lib/ckfw/nssckt.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/security/nss/lib/ckfw/nssckt.h b/security/nss/lib/ckfw/nssckt.h index 81ff410f7e92..e3277e626792 100644 --- a/security/nss/lib/ckfw/nssckt.h +++ b/security/nss/lib/ckfw/nssckt.h @@ -46,7 +46,7 @@ #define NSSCKT_H #ifdef DEBUG -static const char NSSCKT_CVS_ID[] = "@(#) $RCSfile: nssckt.h,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:43:33 $ $Name: $"; +static const char NSSCKT_CVS_ID[] = "@(#) $RCSfile: nssckt.h,v $ $Revision: 1.2 $ $Date: 2000/05/09 18:57:58 $ $Name: $"; #endif /* DEBUG */ #include "nspr.h" @@ -85,6 +85,12 @@ typedef CK_BYTE CK_CHAR; /* a BYTE-sized Boolean flag */ typedef CK_BYTE CK_BBOOL; +/* an unsigned value, at least 16 bits long */ +typedef unsigned short int CK_USHORT; + +/* a signed value, the same size as a CK_USHORT */ +typedef short int CK_SHORT; + /* an unsigned value, at least 32 bits long */ typedef unsigned long int CK_ULONG;