mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-03 08:12:05 +00:00
b4df15d1e1
or missing realpath implementations for sftp-server. - (bal) Corrected mistake in INSTALL in regards to GNU rx library
12 lines
272 B
C
12 lines
272 B
C
#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 */
|