orlikowski 01/06/08 21:19:57
Modified: include apr_time.h
include apr_hooks.h
Log:
Put some declarations in the right order, for detection's sake.
Revision Changes Path
1.37 +2 -2 apr/include/apr_time.h
Index: apr_time.h
===================================================================
RCS file: /home/cvs/apr/include/apr_time.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- apr_time.h 2001/04/12 16:50:49 1.36
+++ apr_time.h 2001/06/09 04:19:54 1.37
@@ -67,8 +67,8 @@
* @package APR Time library
*/
-extern APR_DECLARE_DATA const char apr_month_snames[12][4];
-extern APR_DECLARE_DATA const char apr_day_snames[7][4];
+APR_DECLARE_DATA extern const char apr_month_snames[12][4];
+APR_DECLARE_DATA extern char apr_day_snames[7][4];
/* number of microseconds since 00:00:00 january 1, 1970 UTC */
1.40 +3 -3 apr-util/include/apr_hooks.h
Index: apr_hooks.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_hooks.h,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- apr_hooks.h 2001/05/15 04:23:39 1.39
+++ apr_hooks.h 2001/06/09 04:19:56 1.40
@@ -229,20 +229,20 @@
* The global pool used to allocate any memory needed by the hooks.
* @defvar apr_pool_t *apr_global_hook_pool
*/
-extern APU_DECLARE_DATA apr_pool_t *apr_global_hook_pool;
+APU_DECLARE_DATA extern apr_pool_t *apr_global_hook_pool;
/**
* A global variable to determine if debugging information about the
* hooks functions should be printed
* @defvar apr_pool_t *apr_debug_module_hooks
*/
-extern APU_DECLARE_DATA int apr_debug_module_hooks;
+APU_DECLARE_DATA extern int apr_debug_module_hooks;
/**
* The name of the module that is currently registering a function
* @defvar apr_pool_t *apr_current_hooking_module
*/
-extern APU_DECLARE_DATA const char *apr_current_hooking_module;
+APU_DECLARE_DATA extern const char *apr_current_hooking_module;
/**
* Register a hook function to be sorted