consolidate
[awesomized/libmemcached] / src / p9y / gettimeofday.hpp
index 02b8d6d93e7551692cf2161714f546cc5c6f4f98..93452b664eb5ed29018ef95f620fc02434caf15e 100644 (file)
@@ -1,12 +1,27 @@
 #pragma once
 
-#include "libmemcached-1.0/platform.h"
+#include "libmemcached-1/platform.h"
+
+#if defined __cplusplus
+# include <ctime>
+#else
+# include <time.h>
+#endif
 
-#include <time.h>
 #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