1290SN/A/*	$NetBSD$	*/
29330SN/A#ifndef _STRLCPY_INTERNAL_H_
3290SN/A#define _STRLCPY_INTERNAL_H_
4290SN/A
5290SN/A#ifdef __cplusplus
6290SN/Aextern "C" {
72362SN/A#endif
8290SN/A
92362SN/A#ifdef HAVE_CONFIG_H
10290SN/A#include "config.h"
11290SN/A#endif /* HAVE_CONFIG_H */
12290SN/A
13290SN/A#ifndef HAVE_STRLCPY
14290SN/A#include <string.h>
15290SN/Asize_t _event_strlcpy(char *dst, const char *src, size_t siz);
16290SN/A#define strlcpy _event_strlcpy
17290SN/A#endif
18290SN/A
19290SN/A#ifdef __cplusplus
20290SN/A}
212362SN/A#endif
222362SN/A
232362SN/A#endif
24290SN/A
25290SN/A