From ecc8edf91ce64d4c9f242fc425fe407a8acfaae6 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 5 Oct 2010 02:19:17 +0200 Subject: Fix prototype warnings, remove unused functions. --- fm_strl.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 fm_strl.h (limited to 'fm_strl.h') diff --git a/fm_strl.h b/fm_strl.h new file mode 100644 index 00000000..fb7f9e23 --- /dev/null +++ b/fm_strl.h @@ -0,0 +1,16 @@ +#ifndef FM_STRL_H +#define FM_STRL_H + +#include "config.h" + +/* strlcpy/strlcat prototypes */ +#ifndef HAVE_STRLCAT +size_t +strlcat(char *dst, const char *src, size_t siz); +#endif +#ifndef HAVE_STRLCPY +size_t +strlcpy(char *dst, const char *src, size_t siz); +#endif + +#endif -- cgit v1.2.3