diff options
author | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2003-01-27 17:09:09 +0000 |
---|---|---|
committer | bnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68> | 2003-01-27 17:09:09 +0000 |
commit | 613fa9e6ef8794596cb4324d01703ea57d69ca5f (patch) | |
tree | d0c747e57ba8fd238e47870106d862078ca26194 /include | |
parent | cc4f73e19b185bba9a0fbdcad6b0cf6ed9d6e17c (diff) | |
download | libapr-613fa9e6ef8794596cb4324d01703ea57d69ca5f.tar.gz |
Removed some unnecessary #defines from apr.hnw
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64317 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/apr.hnw | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/apr.hnw b/include/apr.hnw index 41317104b..3ac30a913 100644 --- a/include/apr.hnw +++ b/include/apr.hnw @@ -271,22 +271,6 @@ typedef int apr_socklen_t; #define APR_INT64_C(val) (val##i64) #endif -//srj added in here, libc c no longer takes care of these - -typedef unsigned char nuint8; -typedef unsigned short nuint16; - -#define NGetLo8(a16) ((nuint8)((nuint16)(a16) & 0xFF)) -#define NGetHi8(a16) ((nuint8)((nuint16)(a16) >> 8)) - - -#if !defined( HIBYTE ) - #define HIBYTE NGetHi8 - #endif - #if !defined( LOBYTE ) - #define LOBYTE NGetLo8 -#endif - /* PROC mutex is a GLOBAL mutex on Netware */ #define APR_PROC_MUTEX_IS_GLOBAL 1 |