summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-11-17 13:32:58 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-11-17 13:32:58 +0000
commit072b580d8f5e5d6e885e7d5bb7dad73795bc570f (patch)
treec7e427525709350499d1ed88b40222064ed5e231
parentd483801ccb145eb45eda5e534ba2002f850a7a1f (diff)
downloadlibapr-util-APU_0_9_BRANCH.tar.gz
Merge r76122 from trunk:APU_0_9_BRANCH
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> git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/branches/APU_0_9_BRANCH@76128 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--misc/apr_queue.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/misc/apr_queue.c b/misc/apr_queue.c
index 89e190c0..2634b25a 100644
--- a/misc/apr_queue.c
+++ b/misc/apr_queue.c
@@ -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