diff --git a/src/kits/network/compat/libbind/src/TLSInit.cpp b/src/kits/network/compat/libbind/src/TLSInit.cpp deleted file mode 100644 index 86e2c9187f..0000000000 --- a/src/kits/network/compat/libbind/src/TLSInit.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include - -// XXX: this is an ugly hack because we don't support mutexes -extern int32 gIRSInitKey; -extern int32 gGaiStrerrorKey; - -class TLSInit { - public: - TLSInit(); -}; - -TLSInit::TLSInit() -{ - gIRSInitKey = tls_allocate(); - gGaiStrerrorKey = tls_allocate(); -} - - -static TLSInit __tlsinit_hack;