X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fp9y%2Fgettimeofday.hpp;h=93452b664eb5ed29018ef95f620fc02434caf15e;hb=7781e7d0bf9fc0d986308838a3e1e47d0df3c019;hp=02b8d6d93e7551692cf2161714f546cc5c6f4f98;hpb=2f289c64f625962d945ec3bee80f36bc5c61ee35;p=awesomized%2Flibmemcached diff --git a/src/p9y/gettimeofday.hpp b/src/p9y/gettimeofday.hpp index 02b8d6d9..93452b66 100644 --- a/src/p9y/gettimeofday.hpp +++ b/src/p9y/gettimeofday.hpp @@ -1,12 +1,27 @@ #pragma once -#include "libmemcached-1.0/platform.h" +#include "libmemcached-1/platform.h" + +#if defined __cplusplus +# include +#else +# include +#endif -#include #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