diff options
author | Dima Ruban <dima@FreeBSD.org> | 1998-09-26 19:35:05 +0000 |
---|---|---|
committer | Dima Ruban <dima@FreeBSD.org> | 1998-09-26 19:35:05 +0000 |
commit | bda0eafc55d6799daec0d1a2f7797c1833dd951a (patch) | |
tree | 2e704dc7a2ce64108e4d41c8a98773685c820507 | |
parent | e04f6feacb1ed0cd530282333b61742b0238d064 (diff) | |
download | ports-bda0eafc55d6799daec0d1a2f7797c1833dd951a.tar.gz ports-bda0eafc55d6799daec0d1a2f7797c1833dd951a.zip |
Notes
-rw-r--r-- | security/rsaref/files/patch-ab | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/security/rsaref/files/patch-ab b/security/rsaref/files/patch-ab new file mode 100644 index 000000000000..b87826810f8b --- /dev/null +++ b/security/rsaref/files/patch-ab @@ -0,0 +1,22 @@ +*** global.h.ORIG Sat Sep 26 12:26:48 1998 +--- global.h Sat Sep 26 12:27:44 1998 +*************** +*** 19,29 **** +--- 19,35 ---- + /* POINTER defines a generic pointer type */ + typedef unsigned char *POINTER; + ++ #if 0 + /* UINT2 defines a two byte word */ + typedef unsigned short int UINT2; + + /* UINT4 defines a four byte word */ + typedef unsigned long int UINT4; ++ #else ++ #include <machine/types.h> ++ typedef u_int16_t UINT2; ++ typedef u_int32_t UINT4; ++ #endif + + #ifndef NULL_PTR + #define NULL_PTR ((POINTER)0) |