folly::Init, RAII variant of folly::init
[folly.git] / folly / portability / String.cpp
index 48ae5124d9a0aec67ed06dbace6ebe24d93a4619..fa595458444c04ab6f9da4e2a014ba8d2d1ec662 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -27,7 +27,7 @@ extern "C" void* memrchr(const void* s, int c, size_t n) {
 }
 #endif
 
-#if defined(_WIN32) || defined(__APPLE__) || defined(__FreeBSD__)
+#if defined(_WIN32) || defined(__FreeBSD__)
 extern "C" char* strndup(const char* a, size_t len) {
   auto neededLen = strlen(a);
   if (neededLen > len) {