Move the Environment portability header to the stdlib header
[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 extern "C" {
22 #ifdef _WIN32
23 // These are technically supposed to be defined linux/limits.h and
24 // sys/param.h respectively, but Windows defines _MAX_PATH in stdlib.h,
25 // so, instead of creating two headers for a single define each, we put
26 // them here, where they are likely to already have been included in the
27 // code that needs them.
28 #define PATH_MAX _MAX_PATH
29 #define MAXPATHLEN _MAX_PATH
30
31 char* mktemp(char* tn);
32 char* mkdtemp(char* tn);
33 int mkstemp(char* tn);
34 char* realpath(const char* path, char* resolved_path);
35 int setenv(const char* name, const char* value, int overwrite);
36 int unsetenv(const char* name);
37 #else
38 extern char** environ;
39 #endif
40 }