aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-11-08 17:51:52 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-11-08 17:51:52 +0000
commitcb236290e267f17d5f81a18d742b81f1b74b05a2 (patch)
treee6c74acdaa0881bb8accab285d77f146381b2f81 /configure.in
parent7b11f0ff9972d8046e69f98948fdab26b5199caf (diff)
downloadfetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.tar.gz
fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.tar.bz2
fetchmail-cb236290e267f17d5f81a18d742b81f1b74b05a2.zip
Prototypes everywhere.
svn path=/trunk/; revision=515
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 01424b2e..a7414204 100644
--- a/configure.in
+++ b/configure.in
@@ -76,17 +76,6 @@ AC_TRY_COMPILE([],
[AC_DEFINE(HAVE_VOIDPOINTER) AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no))
-dnl Check for usable function prototypes
-AC_MSG_CHECKING(use of function prototypes);
-AC_TRY_COMPILE([],
- [int x;
- int myProtoFn (int arg);
- x = 0;
- x = myProtoFn(x);
- ],
- [AC_DEFINE(HAVE_PROTOTYPES) AC_MSG_RESULT(yes)],
- AC_MSG_RESULT(no))
-
dnl Check out the wait reality. We have to assume sys/wait.h is present.
AC_CHECK_FUNCS(waitpid wait3)
AC_MSG_CHECKING(for union wait);