summaryrefslogtreecommitdiff
path: root/misc/miscfn.h
diff options
context:
space:
mode:
authorewt <devnull@localhost>1997-05-07 15:05:05 +0000
committerewt <devnull@localhost>1997-05-07 15:05:05 +0000
commit5ccef4733df2bb9278439a964bdcc911f58903f4 (patch)
tree1ab05be9a9fd2b4609fcc49b7eba4fec028d3222 /misc/miscfn.h
parentbb90619b9303fc6c66121b4792172586c5a09d7d (diff)
downloadlibrpm-tizen-5ccef4733df2bb9278439a964bdcc911f58903f4.tar.gz
librpm-tizen-5ccef4733df2bb9278439a964bdcc911f58903f4.tar.bz2
librpm-tizen-5ccef4733df2bb9278439a964bdcc911f58903f4.zip
Protoype realpath() if it's not provided by libc.
CVS patchset: 1603 CVS date: 1997/05/07 15:05:05
Diffstat (limited to 'misc/miscfn.h')
-rw-r--r--misc/miscfn.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/miscfn.h b/misc/miscfn.h
index 3f75431fa..67e683d62 100644
--- a/misc/miscfn.h
+++ b/misc/miscfn.h
@@ -35,4 +35,8 @@ char *realpath(char *path, char resolved_path[]);
#include <strings.h>
#endif
+#if ! HAVE_REALPATH
+char *realpath(const char *path, char resolved_path []);
+#endif
+
#endif