From 5ccef4733df2bb9278439a964bdcc911f58903f4 Mon Sep 17 00:00:00 2001 From: ewt Date: Wed, 7 May 1997 15:05:05 +0000 Subject: [PATCH] Protoype realpath() if it's not provided by libc. CVS patchset: 1603 CVS date: 1997/05/07 15:05:05 --- misc/miscfn.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/misc/miscfn.h b/misc/miscfn.h index 3f75431..67e683d 100644 --- a/misc/miscfn.h +++ b/misc/miscfn.h @@ -35,4 +35,8 @@ char *realpath(char *path, char resolved_path[]); #include #endif +#if ! HAVE_REALPATH +char *realpath(const char *path, char resolved_path []); +#endif + #endif -- 2.7.4