consolidate
[m6w6/libmemcached] / src / p9y / realpath.hpp
1 #pragma once
2
3 #include "mem_config.h"
4
5 #if defined __cplusplus
6 # include <cstdlib>
7 #else
8 # include <stdlib.h>
9 #endif
10
11 #if !defined HAVE_REALPATH
12 # define P9Y_NEED_REALPATH
13 # if defined __cplusplus
14 extern "C" {
15 # endif
16 char *realpath(const char *path, char real[_MAX_PATH]);
17 # if defined __cplusplus
18 }
19 # endif
20 #endif // HAVE_REALPATH