consolidate
[m6w6/libmemcached] / src / p9y / gettimeofday.hpp
index aaba58bb551a5fda7edd765bb446bb4a4e78d16e..93452b664eb5ed29018ef95f620fc02434caf15e 100644 (file)
@@ -2,11 +2,26 @@
 
 #include "libmemcached-1/platform.h"
 
-#include <time.h>
+#if defined __cplusplus
+# include <ctime>
+#else
+# include <time.h>
+#endif
+
 #if defined HAVE_SYS_TIME_H
 # include <sys/time.h>
 #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