Commit bfb4facb by Vicent Martí

Merge pull request #1495 from jasperla/development

Add missing prototype for p_realpath().
parents 3a2a511b 0d4a5b13
...@@ -21,6 +21,8 @@ ...@@ -21,6 +21,8 @@
/* The OpenBSD realpath function behaves differently */ /* The OpenBSD realpath function behaves differently */
#if !defined(__OpenBSD__) #if !defined(__OpenBSD__)
# define p_realpath(p, po) realpath(p, po) # define p_realpath(p, po) realpath(p, po)
#else
char *p_realpath(const char *, char *);
#endif #endif
#define p_vsnprintf(b, c, f, a) vsnprintf(b, c, f, a) #define p_vsnprintf(b, c, f, a) vsnprintf(b, c, f, a)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment