/* The number of bytes in a short. */
#undef SIZEOF_SHORT
-/* Define if you have the asnprintf function. */
-#undef HAVE_ASNPRINTF
-
-/* Define if you have the asprintf function. */
-#undef HAVE_ASPRINTF
-
/* Define if you have the bpf_dump function. */
#undef HAVE_BPF_DUMP
/* Define if you have the strlcpy function. */
#undef HAVE_STRLCPY
-/* Define if you have the vasnprintf function. */
-#undef HAVE_VASNPRINTF
-
-/* Define if you have the vasprintf function. */
-#undef HAVE_VASPRINTF
-
/* Define if you have the vfprintf function. */
#undef HAVE_VFPRINTF
#! /bin/sh
-# From configure.in Revision: 1.130
+# From configure.in Revision: 1.131
fi
needsnprintf=no
-for ac_func in vsnprintf snprintf asprintf asnprintf vasprintf vasnprintf
+for ac_func in vsnprintf snprintf
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
echo "configure:3017: checking for $ac_func" >&5
else
V_PCAPDEP=$libpcap
if test -r $d/pcap.h; then
- V_INCLS="-I$d $V_INCLS"
+ V_INCLS="-I$d $V_INCLS"
elif test -r $srcdir/../libpcap/pcap.h; then
V_INCLS="-I$d -I$srcdir/../libpcap $V_INCLS"
else
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * @(#) $Header: /tcpdump/master/tcpdump/interface.h,v 1.148 2000-12-21 10:43:21 guy Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/interface.h,v 1.149 2001-01-02 22:47:06 guy Exp $ (LBL)
*/
#ifndef tcpdump_interface_h
__attribute__((format (printf, 3, 0)));
#endif
-#if !defined(HAVE_ASPRINTF)
-int asprintf (char **ret, const char *format, ...)
- __attribute__ ((format (printf, 2, 3)));
-#endif
-
-#if !defined(HAVE_VASPRINTF)
-int vasprintf (char **ret, const char *format, va_list ap)
- __attribute__((format (printf, 2, 0)));
-#endif
-
-#if !defined(HAVE_ASNPRINTF)
-int asnprintf (char **ret, size_t max_sz, const char *format, ...)
- __attribute__ ((format (printf, 3, 4)));
-#endif
-
-#if !defined(HAVE_VASNPRINTF)
-int vasnprintf (char **ret, size_t max_sz, const char *format, va_list ap)
- __attribute__((format (printf, 3, 0)));
-#endif
-
#ifndef HAVE_STRLCAT
extern size_t strlcat (char *, const char *, size_t);
#endif