From f897ffa431452401e1f284e5fe47379fc1c248d0 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 29 Jun 2011 12:16:04 +0200 Subject: [PATCH] Do not redefine strlc{at,py} prototypes. --- include/strlcat.h | 2 ++ include/strlcpy.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/strlcat.h b/include/strlcat.h index f3817268..d64462aa 100644 --- a/include/strlcat.h +++ b/include/strlcat.h @@ -3,6 +3,8 @@ #include +#ifndef HAVE_STRLCAT size_t strlcat(char *, const char *, size_t); +#endif #endif diff --git a/include/strlcpy.h b/include/strlcpy.h index 887f175c..e0066b42 100644 --- a/include/strlcpy.h +++ b/include/strlcpy.h @@ -3,6 +3,8 @@ #include +#ifndef HAVE_STRLCPY size_t strlcpy(char *, const char *, size_t); +#endif #endif