summaryrefslogtreecommitdiff
path: root/openbsd-compat/realpath.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/realpath.h')
-rw-r--r--openbsd-compat/realpath.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/openbsd-compat/realpath.h b/openbsd-compat/realpath.h
new file mode 100644
index 000000000..dc3579dd3
--- /dev/null
+++ b/openbsd-compat/realpath.h
@@ -0,0 +1,11 @@
1#ifndef _BSD_REALPATH_H
2#define _BSD_REALPATH_H
3
4#include "config.h"
5
6#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH)
7
8char *realpath(const char *path, char *resolved);
9
10#endif /* !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) */
11#endif /* _BSD_REALPATH_H */