You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Guenter Knauf <ef...@gmx.net> on 2004/04/29 18:30:21 UTC

[PATCH] apr_arch_internal_time.h patch to fix prototype

found that the prototype for apr_netware_setup_time() doesnt match with the function (see apr/time/unix/time.c line 271);

--- apr_arch_internal_time.h.orig	Fri Feb 13 12:12:36 2004
+++ apr_arch_internal_time.h	Tue Apr 27 21:17:34 2004
@@ -20,6 +20,6 @@
 
 #define TZONE           (*___timezone())
 
-void apr_netware_setup_time(void);
+APR_DECLARE(void) apr_netware_setup_time(void);
 
 #endif  /* TIME_INTERNAL_H */


Guenter.