Remove pcap_version.h

This commit is contained in:
Vijay Kumar Banerjee
2019-04-02 17:33:19 +05:30
committed by Sebastian Huber
parent 66cee30944
commit 3f2b54d971
2 changed files with 0 additions and 17 deletions

View File

@@ -1,13 +0,0 @@
/*
* We make the version string static, and return a pointer to it, rather
* than exporting the version string directly. On at least some UNIXes,
* if you import data from a shared library into an program, the data is
* bound into the program binary, so if the string in the version of the
* library with which the program was linked isn't the same as the
* string in the version of the library with which the program is being
* run, various undesirable things may happen (warnings, the string
* being the one from the version of the library with which the program
* was linked, or even weirder things, such as the string being the one
* from the library but being truncated).
*/
static const char pcap_version_string[] = "libpcap version 1.8.1";