From cedc441e4a5f624cdfb573e6cd47eaef8377cd09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 20 Aug 2002 10:42:16 +0000 Subject: [PATCH] Added the realpath() prototype. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@838 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/stdlib.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/headers/private/kernel/stdlib.h b/headers/private/kernel/stdlib.h index ce694c0758..26d780c1db 100755 --- a/headers/private/kernel/stdlib.h +++ b/headers/private/kernel/stdlib.h @@ -32,6 +32,8 @@ int setenv(char const *, char const *, int); int putenv(char const *); void unsetenv(char const *); +char *realpath(const char *path, char *resolved); + void *bsearch(void const *, void const *, size_t, size_t, int (*) (void const *, void const *)); int heapsort(void *, size_t , size_t , int (*)(void const *, void const *)); int mergesort(void *, size_t, size_t, int (*)(void const *, void const *));