bnicholes 2003/01/27 09:09:09
Modified: . STATUS
include apr.hnw
Log:
Removed some unnecessary #defines from apr.hnw
Revision Changes Path
1.184 +2 -4 apr/STATUS
Index: STATUS
===================================================================
RCS file: /home/cvs/apr/STATUS,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- STATUS 23 Jan 2003 16:46:36 -0000 1.183
+++ STATUS 27 Jan 2003 17:09:09 -0000 1.184
@@ -30,9 +30,7 @@
apr_md5.h (MD5_DIGESTSIZE)
apr_network_io.h (MAX_SECONDS_TO_LINGER)
apr.hnw (READDIR_IS_THREAD_SAFE, ENUM_BITFIELD,
- _POSIX_THREAD_SAFE_FUNCTIONS (?),
- nuint8, nuint16, NGetLo8, NGetHi8,
- HIBYTE, LOBYTE)
+ _POSIX_THREAD_SAFE_FUNCTIONS (?))
apr.hw (NO_USE_SIGACTION)
1.0 showstopper (not 0.9.x): gstein
1.28 +0 -16 apr/include/apr.hnw
Index: apr.hnw
===================================================================
RCS file: /home/cvs/apr/include/apr.hnw,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- apr.hnw 14 Jan 2003 00:51:36 -0000 1.27
+++ apr.hnw 27 Jan 2003 17:09:09 -0000 1.28
@@ -271,22 +271,6 @@
#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