Add missing prototype for p_realpath().

This commit is contained in:
Jasper Lievisse Adriaanse 2013-04-22 00:13:35 +02:00
parent 3a2a511be3
commit 0d4a5b13af

View File

@ -21,6 +21,8 @@
/* The OpenBSD realpath function behaves differently */
#if !defined(__OpenBSD__)
# define p_realpath(p, po) realpath(p, po)
#else
char *p_realpath(const char *, char *);
#endif
#define p_vsnprintf(b, c, f, a) vsnprintf(b, c, f, a)