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 14:32:59 UTC

svn commit: rev 76128 - apr/apr-util/branches/APU_0_9_BRANCH/misc

Author: jorton
Date: Wed Nov 17 05:32:58 2004
New Revision: 76128

Modified:
   apr/apr-util/branches/APU_0_9_BRANCH/misc/apr_queue.c
Log:
Merge r76122 from trunk:

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/branches/APU_0_9_BRANCH/misc/apr_queue.c
==============================================================================
--- apr/apr-util/branches/APU_0_9_BRANCH/misc/apr_queue.c	(original)
+++ apr/apr-util/branches/APU_0_9_BRANCH/misc/apr_queue.c	Wed Nov 17 05:32:58 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