aboutsummaryrefslogtreecommitdiff
path: root/absl/time/clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'absl/time/clock.h')
-rw-r--r--absl/time/clock.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/absl/time/clock.h b/absl/time/clock.h
index 5fe244d6..41d2cf27 100644
--- a/absl/time/clock.h
+++ b/absl/time/clock.h
@@ -22,6 +22,9 @@
#ifndef ABSL_TIME_CLOCK_H_
#define ABSL_TIME_CLOCK_H_
+#include <cstdint>
+
+#include "absl/base/config.h"
#include "absl/base/macros.h"
#include "absl/time/time.h"
@@ -64,7 +67,8 @@ ABSL_NAMESPACE_END
// By changing our extension points to be extern "C", we dodge this
// check.
extern "C" {
-void ABSL_INTERNAL_C_SYMBOL(AbslInternalSleepFor)(absl::Duration duration);
+ABSL_DLL void ABSL_INTERNAL_C_SYMBOL(AbslInternalSleepFor)(
+ absl::Duration duration);
} // extern "C"
inline void absl::SleepFor(absl::Duration duration) {