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