AC_NEED_PROTO

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4760 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1998-04-07 23:07:39 +00:00
parent 13aca2b797
commit 142da1e4e6

View File

@@ -21,6 +21,9 @@ if test "$ac_cv_func_snprintf_working" = yes; then
foo=HAVE_SNPRINTF
AC_DEFINE_UNQUOTED($foo)
fi
if test "$ac_cv_func_snprintf_working" = yes; then
AC_NEED_PROTO([#include <stdio.h>],snprintf)
fi
])
AC_DEFUN(AC_BROKEN_VSNPRINTF,[
@@ -55,4 +58,7 @@ if test "$ac_cv_func_vsnprintf_working" = yes; then
foo=HAVE_VSNPRINTF
AC_DEFINE_UNQUOTED($foo)
fi
if test "$ac_cv_func_vsnprintf_working" = yes; then
AC_NEED_PROTO([#include <stdio.h>],vsnprintf)
fi
])