blob: 016fc4849b9bf3401312c866616a6505f20564fe [file] [log] [blame]
#ifndef REALPATH_H
#define REALPATH_H
#include <limits.h>
#ifndef PATH_MAX
# define PATH_MAX 4096
#endif
extern char *myrealpath(const char *path, char *resolved_path, int m);
#endif /* REALPATH_H */