13 lines
250 B
C
13 lines
250 B
C
/* $Id: getcwd.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
|
|
|
|
#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 */
|