You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2004/11/17 13:33:04 UTC

svn commit: rev 76122 - apr/apr-util/trunk/misc

Author: jorton
Date: Wed Nov 17 04:33:02 2004
New Revision: 76122

Modified:
   apr/apr-util/trunk/misc/apr_queue.c
Log:
Avoid testing undefined symbols.  No functional change.

* apr-util/misc/apr_queue.c
  Include the header that defines the symbols we are testing.

Submitted by: Julian Foad <julianfoad btopenworld.com>


Modified: apr/apr-util/trunk/misc/apr_queue.c
==============================================================================
--- apr/apr-util/trunk/misc/apr_queue.c	(original)
+++ apr/apr-util/trunk/misc/apr_queue.c	Wed Nov 17 04:33:02 2004
@@ -12,6 +12,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
+#include "apr.h"
+
 #if APR_HAVE_STDIO_H
 #include <stdio.h>
 #endif