Drop main() prototype. Syncs with NetBSD-8
[minix.git] / external / bsd / libevent / dist / strlcpy-internal.h
blobba397511ba2a05d3f3699d0d1784693474692770
1 /* $NetBSD: strlcpy-internal.h,v 1.1.1.2 2013/04/11 16:43:25 christos Exp $ */
2 #ifndef _STRLCPY_INTERNAL_H_
3 #define _STRLCPY_INTERNAL_H_
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
9 #include "event2/event-config.h"
11 #ifndef _EVENT_HAVE_STRLCPY
12 #include <string.h>
13 size_t _event_strlcpy(char *dst, const char *src, size_t siz);
14 #define strlcpy _event_strlcpy
15 #endif
17 #ifdef __cplusplus
19 #endif
21 #endif