From b4df15d1e119994ad1f3e73c1283414d2eb30a5f Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Sun, 15 Oct 2000 00:17:36 +0000 Subject: - (bal) Add support for realpath and getcwd for platforms with broken or missing realpath implementations for sftp-server. - (bal) Corrected mistake in INSTALL in regards to GNU rx library --- bsd-realpath.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 bsd-realpath.h (limited to 'bsd-realpath.h') diff --git a/bsd-realpath.h b/bsd-realpath.h new file mode 100644 index 000000000..dc3579dd3 --- /dev/null +++ b/bsd-realpath.h @@ -0,0 +1,11 @@ +#ifndef _BSD_REALPATH_H +#define _BSD_REALPATH_H + +#include "config.h" + +#if !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) + +char *realpath(const char *path, char *resolved); + +#endif /* !defined(HAVE_REALPATH) || defined(BROKEN_REALPATH) */ +#endif /* _BSD_REALPATH_H */ -- cgit v1.2.3