diff --git a/include/llarp/string.h b/include/llarp/string.h deleted file mode 100644 index 69c4a7a82..000000000 --- a/include/llarp/string.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef LLARP_STRING_H -#define LLARP_STRING_H - -#include - -#ifndef __FreeBSD__ -#if !(__APPLE__ && __MACH__) -size_t INLINE -strnlen(const char* str, size_t sz) -{ - size_t slen = 0; - while (sz-- && str[slen]) - slen++; - return slen; -} -#endif -#endif - -#endif