summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2000-05-22 20:16:03 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2000-05-22 20:16:03 +0000
commit86449ace2f1d8cfbe4d6e0c15d8f7d3ff65074da (patch)
treedb82ed783070a1224825046fcdbf679f0321ddc1 /lib
parent14ae7a617356e70d9bd3af5ac18b63baaeffe531 (diff)
downloadlibapr-86449ace2f1d8cfbe4d6e0c15d8f7d3ff65074da.tar.gz
Solaris needs stdlib.h for the getpass() prototype.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60081 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r--lib/apr_getpass.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/apr_getpass.c b/lib/apr_getpass.c
index 1eaf30346..4afea4a85 100644
--- a/lib/apr_getpass.c
+++ b/lib/apr_getpass.c
@@ -69,6 +69,9 @@
#if HAVE_CONIO_H
#include <conio.h>
#endif
+#if HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
#if defined(HAVE_TERMIOS_H) && !defined(HAVE_GETPASS)
#include <termios.h>