X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2Fportability%2FString.cpp;h=fa595458444c04ab6f9da4e2a014ba8d2d1ec662;hb=1672380910a8c21cd36095661eb1360f43c93332;hp=48ae5124d9a0aec67ed06dbace6ebe24d93a4619;hpb=8d5c32ba92f8d4902b15bc5ba340a420a212ce73;p=folly.git diff --git a/folly/portability/String.cpp b/folly/portability/String.cpp index 48ae5124..fa595458 100755 --- a/folly/portability/String.cpp +++ b/folly/portability/String.cpp @@ -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) {