Fixed issue with cmake version generation
[libevent.git] / strlcpy-internal.h
blobcfc27ec662764d8b3de68b3815c3bf045cdcb44b
1 #ifndef STRLCPY_INTERNAL_H_INCLUDED_
2 #define STRLCPY_INTERNAL_H_INCLUDED_
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #include "event2/event-config.h"
9 #include "evconfig-private.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