2001-02-09 02:55:35 +01:00
|
|
|
/* $Id: realpath.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
|
|
|
|
|
2000-10-15 02:17:36 +02:00
|
|
|
#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 */
|