summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-07-21 19:50:46 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2000-07-21 19:50:46 +0000
commitd1af89b28f0cc77b9e1c5a9c494a20ae24fa8ec5 (patch)
treee25bc707d5072cdb2b69b401f0e35895683385fd /file_io
parentbfd0fa4ee268b13b0b952f41de5b922e60e5205b (diff)
downloadlibapr-d1af89b28f0cc77b9e1c5a9c494a20ae24fa8ec5.tar.gz
Move all APR functions related to strings to their own directory, and
create a new header for those functions. This is the first step to removing the apr/lib directory completely, and moving those files/functions to descriptive directories. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60398 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/dir.c1
-rw-r--r--file_io/unix/fileacc.c1
-rw-r--r--file_io/unix/filedup.c1
-rw-r--r--file_io/unix/open.c1
-rw-r--r--file_io/unix/pipe.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/file_io/unix/dir.c b/file_io/unix/dir.c
index 8791620e9..f1599d1de 100644
--- a/file_io/unix/dir.c
+++ b/file_io/unix/dir.c
@@ -53,6 +53,7 @@
*/
#include "fileio.h"
+#include "apr_strings.h"
#include "apr_portable.h"
static ap_status_t dir_cleanup(void *thedir)
diff --git a/file_io/unix/fileacc.c b/file_io/unix/fileacc.c
index e64336421..2a5135e82 100644
--- a/file_io/unix/fileacc.c
+++ b/file_io/unix/fileacc.c
@@ -52,6 +52,7 @@
* <http://www.apache.org/>.
*/
+#include "apr_strings.h"
#ifdef OS2
#include "../os2/fileio.h"
#elif defined(WIN32)
diff --git a/file_io/unix/filedup.c b/file_io/unix/filedup.c
index 2a953da08..b1f4f5e4b 100644
--- a/file_io/unix/filedup.c
+++ b/file_io/unix/filedup.c
@@ -53,6 +53,7 @@
*/
#include "fileio.h"
+#include "apr_strings.h"
#include "apr_portable.h"
ap_status_t ap_dupfile(ap_file_t **new_file, ap_file_t *old_file, ap_pool_t *p)
diff --git a/file_io/unix/open.c b/file_io/unix/open.c
index 6becd812c..a7c88cada 100644
--- a/file_io/unix/open.c
+++ b/file_io/unix/open.c
@@ -53,6 +53,7 @@
*/
#include "fileio.h"
+#include "apr_strings.h"
#include "apr_portable.h"
ap_status_t ap_unix_file_cleanup(void *thefile)
diff --git a/file_io/unix/pipe.c b/file_io/unix/pipe.c
index 97bbf72ee..0c666d674 100644
--- a/file_io/unix/pipe.c
+++ b/file_io/unix/pipe.c
@@ -53,6 +53,7 @@
*/
#include "fileio.h"
+#include "apr_strings.h"
static ap_status_t pipeblock(ap_file_t *thepipe)
{