diff -r 000000000000 -r 6474c204b198 ipc/chromium/src/third_party/libevent/strlcpy-internal.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ipc/chromium/src/third_party/libevent/strlcpy-internal.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,21 @@ +#ifndef _STRLCPY_INTERNAL_H_ +#define _STRLCPY_INTERNAL_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "event2/event-config.h" + +#ifndef _EVENT_HAVE_STRLCPY +#include +size_t _event_strlcpy(char *dst, const char *src, size_t siz); +#define strlcpy _event_strlcpy +#endif + +#ifdef __cplusplus +} +#endif + +#endif +