diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-12-23 14:58:22 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-12-23 14:58:22 -0800 |
commit | 26bb2e5d087d306088f8c36987d4c34d98d9ed0b (patch) | |
tree | 9098d90130eddb105cd16e0468f44c34cc520ba4 | |
parent | f5bbbba028c5f33cdd0b73a0c5b093cb868550df (diff) |
Get rid of unnecessary "extern".
-rw-r--r-- | pcap-int.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 /* |