summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2001-03-29 09:45:40 +0000
committerbjh <bjh@13f79535-47bb-0310-9956-ffa450edef68>2001-03-29 09:45:40 +0000
commit67b52dbe8e25793074fad4d0663aa32387ffe684 (patch)
tree4d6d519ff81a29d55343a4a676baf5f42f6a4ba8 /file_io
parent1bef13595e45a0c7d6b8e74c320d0b6a51cf82c8 (diff)
downloadlibapr-67b52dbe8e25793074fad4d0663aa32387ffe684.tar.gz
Remove long since defunct function apr_file_error() (marked for death nearly a
year ago). It's only implemented on unix (as a stub) so causes linkage failure on other platforms. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61392 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/open.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/file_io/unix/open.c b/file_io/unix/open.c
index e13f6b05d..4f5237213 100644
--- a/file_io/unix/open.c
+++ b/file_io/unix/open.c
@@ -239,14 +239,6 @@ apr_status_t apr_file_eof(apr_file_t *fptr)
return APR_SUCCESS;
}
-apr_status_t apr_file_error(apr_file_t *fptr)
-{
-/* This function should be removed ASAP. It is next on my list once
- * I am sure nobody is using it.
- */
- return APR_SUCCESS;
-}
-
apr_status_t apr_file_open_stderr(apr_file_t **thefile, apr_pool_t *cont)
{
int fd = STDERR_FILENO;