summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2000-11-26 03:00:05 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2000-11-26 03:00:05 +0000
commit57397c181937025c21b96f0adb5030e0363b410c (patch)
tree26679a1833f707d8499bf974f752a71dd6e697ae /strings
parente835ddb3ff7dcf31a243bde6b9e1e081230510bc (diff)
downloadlibapr-57397c181937025c21b96f0adb5030e0363b410c.tar.gz
Make the APR headers sane.
*) Reduce the dependencies between APR headers. This assists APR clients who generate dependencies, and (used to) pick up "all" of the APR headers. Basically, this was trimming back the headers to just what was needed. Some unneeded system headers were removed, too. The most common headers to put back in were: apr.h, apr_pools.h, and apr_errno.h. *) move apr_pool_t declaration and a few pool functions from apr_general.h to apr_pools.h. *) move kill_conditions and process_chain from apr_pools.h to apr_thread_proc.h. *) move apr_note_subprocess() from apr_general.h to apr_thread_proc.h *) add stdio.h to apr_pools.c (compensate for removal from apr_general.h) *) add apr_lib.h to apr_strnatcmp.c (compensate for apr_strings.h no longer including apr_lib.h) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60796 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings')
-rw-r--r--strings/apr_strnatcmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_strnatcmp.c b/strings/apr_strnatcmp.c
index 1070ffdab..32140e3b3 100644
--- a/strings/apr_strnatcmp.c
+++ b/strings/apr_strnatcmp.c
@@ -23,9 +23,9 @@
#include <ctype.h>
#include <string.h>
#include <assert.h>
-#include <stdio.h>
#include "apr_strings.h"
+#include "apr_lib.h" /* for apr_is*() */
#if defined(__GNUC__)
# define UNUSED __attribute__((__unused__))