Move ThreadLocal.h into the implementation
[folly.git] / folly / Demangle.h
index 1422e81799297c13f19379f5276a4349be6873c7..4b8b7001da2e8ce322577f52a5bcc430966732b5 100644 (file)
@@ -59,4 +59,7 @@ inline size_t demangle(const std::type_info& type, char* buf, size_t bufSize) {
   return demangle(type.name(), buf, bufSize);
 }
 
+// glibc doesn't have strlcpy
+size_t strlcpy(char* dest, const char* const src, size_t size);
+
 }