Merge pull request #1495 from jasperla/development

Add missing prototype for p_realpath().
This commit is contained in:
Vicent Martí 2013-04-21 15:20:36 -07:00
commit bfb4facb3a

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)