char ** enivron is inconsistent on some platforms
[folly.git] / folly / portability / Stdlib.h
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <cstdlib>
20
21 #if defined(__APPLE__)
22 #include <TargetConditionals.h>
23 #if (TARGET_OS_OSX || TARGET_OS_SIMULATOR)
24 #include <crt_extern.h>
25 #endif
26 #endif
27
28 extern "C" {
29 #ifdef _WIN32
30 // These are technically supposed to be defined linux/limits.h and
31 // sys/param.h respectively, but Windows defines _MAX_PATH in stdlib.h,
32 // so, instead of creating two headers for a single define each, we put
33 // them here, where they are likely to already have been included in the
34 // code that needs them.
35 #define PATH_MAX _MAX_PATH
36 #define MAXPATHLEN _MAX_PATH
37
38 char* mktemp(char* tn);
39 char* mkdtemp(char* tn);
40 int mkstemp(char* tn);
41 char* realpath(const char* path, char* resolved_path);
42 int setenv(const char* name, const char* value, int overwrite);
43 int unsetenv(const char* name);
44 #elif defined(__APPLE__) && (TARGET_OS_OSX || TARGET_OS_SIMULATOR)
45 #define environ (*_NSGetEnviron())
46 #endif
47 }