1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2025-01-08 22:22:52 +08:00
proxychains-ng/src/version.c
rofl0r cd4aee1997 print proxychains version on DLL init
framework to print version stolen from musl
2014-07-22 14:10:11 +02:00

7 lines
124 B
C

#include "version.h"
static const char version[] = VERSION;
const char *proxychains_get_version(void) {
return version;
}