- (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
diff --git a/bsd-getcwd.h b/bsd-getcwd.h
new file mode 100644
index 0000000..bee7386
--- /dev/null
+++ b/bsd-getcwd.h
@@ -0,0 +1,10 @@
+#ifndef _BSD_GETCWD_H 
+#define _BSD_GETCWD_H
+#include "config.h"
+
+#if !defined(HAVE_GETCWD)
+
+char *getcwd(char *pt, size_t size);
+
+#endif /* !defined(HAVE_GETCWD) */
+#endif /* _BSD_GETCWD_H */