summaryrefslogtreecommitdiff
path: root/mount/realpath.h
blob: a8fad639acfb54d9998930d6892689d4497d0ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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);
extern char *canonicalize (const char *path);
extern char *canonicalize_mountpoint (const char *path);

#endif /* REALPATH_H */