summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h
index fec1000107..7b87116fc5 100644
--- a/main/php.h
+++ b/main/php.h
@@ -95,6 +95,14 @@ extern unsigned char second_arg_allow_ref[];
#include <alloca.h>
#endif
+#if !HAVE_STRLCPY
+size_t strlcpy(char *dst, const char *src, size_t siz);
+#endif
+
+#if !HAVE_STRLCAT
+size_t strlcat(char *dst, const char *src, size_t siz);
+#endif
+
#include "request_info.h"
#if HAVE_LIBDL