X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fp9y%2Fgettimeofday.hpp;h=93452b664eb5ed29018ef95f620fc02434caf15e;hb=7781e7d0bf9fc0d986308838a3e1e47d0df3c019;hp=aaba58bb551a5fda7edd765bb446bb4a4e78d16e;hpb=3ffc968aaf182bf1ff1e18157c7bde2bdb41668d;p=awesomized%2Flibmemcached diff --git a/src/p9y/gettimeofday.hpp b/src/p9y/gettimeofday.hpp index aaba58bb..93452b66 100644 --- a/src/p9y/gettimeofday.hpp +++ b/src/p9y/gettimeofday.hpp @@ -2,11 +2,26 @@ #include "libmemcached-1/platform.h" -#include +#if defined __cplusplus +# include +#else +# include +#endif + #if defined HAVE_SYS_TIME_H # include #endif #if !defined HAVE_GETTIMEOFDAY +# define P9Y_NEED_GETTIMEOFDAY +#endif + +#if defined P9Y_NEED_GETTIMEOFDAY +# if defined __cplusplus +extern "C" { +# endif int gettimeofday(struct timeval* tp, struct timezone* tzp); +# if defined __cplusplus +}; +#endif #endif