diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-02-25 20:39:41 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-02-25 20:39:41 +0000 |
commit | f89feca4d20956d9232712f1febb5cb10156ba42 (patch) | |
tree | a3e2e599ce12612d3dee4b8692c03509a4ca0fa7 /passwd | |
parent | 65e1cc33ee39faf300e63315a649d275054a683a (diff) | |
download | apr-f89feca4d20956d9232712f1febb5cb10156ba42.tar.gz |
Fix the hosed #ifdef APR_HAVE_FOO_H tests, the #if HAVE_ tests, and
also cleanup s/#ifdef HAVE_FOO_H/#if APR_HAVE_FOO_H/ whrere appropriate.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'passwd')
-rw-r--r-- | passwd/apr_getpass.c | 6 | ||||
-rw-r--r-- | passwd/apr_md5.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/passwd/apr_getpass.c b/passwd/apr_getpass.c index 1338b0977..dc1a44d60 100644 --- a/passwd/apr_getpass.c +++ b/passwd/apr_getpass.c @@ -64,13 +64,13 @@ #include <sys/types.h> #include <errno.h> -#if HAVE_UNISTD_H +#if APR_HAVE_UNISTD_H #include <unistd.h> #endif -#if HAVE_CONIO_H +#if APR_HAVE_CONIO_H #include <conio.h> #endif -#if HAVE_STDLIB_H +#if APR_HAVE_STDLIB_H #include <stdlib.h> #endif #if APR_HAVE_STRING_H diff --git a/passwd/apr_md5.c b/passwd/apr_md5.c index 2264a4bcb..48d1f1c4b 100644 --- a/passwd/apr_md5.c +++ b/passwd/apr_md5.c @@ -102,13 +102,13 @@ #include "apr_md5.h" #include "apr_lib.h" -#ifdef HAVE_STRING_H +#if APR_HAVE_STRING_H #include <string.h> #endif -#ifdef HAVE_CRYPT_H +#if APR_HAVE_CRYPT_H #include <crypt.h> #endif -#ifdef HAVE_UNISTD_H +#if APR_HAVE_UNISTD_H #include <unistd.h> #endif |