aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-12-23 14:58:22 -0800
committerGuy Harris <guy@alum.mit.edu>2015-12-23 14:58:22 -0800
commit26bb2e5d087d306088f8c36987d4c34d98d9ed0b (patch)
tree9098d90130eddb105cd16e0468f44c34cc520ba4
parentf5bbbba028c5f33cdd0b73a0c5b093cb868550df (diff)
Get rid of unnecessary "extern".
-rw-r--r--pcap-int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap-int.h b/pcap-int.h
index 9b89a824..a44fd027 100644
--- a/pcap-int.h
+++ b/pcap-int.h
@@ -448,7 +448,7 @@ PCAP_INTERNAL int pcap_snprintf(char *, size_t, FORMAT_STRING(const char *), ...
#ifdef HAVE_VSNPRINTF
#define pcap_vsnprintf vsnprintf
#else
-PCAP_INTERNAL extern int pcap_vsnprintf(char *, size_t, const char *, va_list ap);
+PCAP_INTERNAL int pcap_vsnprintf(char *, size_t, const char *, va_list ap);
#endif
/*