Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / bsd / libevent / dist / strlcpy-internal.h
blob684573b7756a85dbeae3d1d49f78762201bad56f
1 /* $NetBSD$ */
2 #ifndef _STRLCPY_INTERNAL_H_
3 #define _STRLCPY_INTERNAL_H_
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11 #endif /* HAVE_CONFIG_H */
13 #ifndef HAVE_STRLCPY
14 #include <string.h>
15 size_t _event_strlcpy(char *dst, const char *src, size_t siz);
16 #define strlcpy _event_strlcpy
17 #endif
19 #ifdef __cplusplus
21 #endif
23 #endif