diff options
-rw-r--r-- | absl/time/clock.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/absl/time/clock.h b/absl/time/clock.h index 5fe244d6..3cdc55a7 100644 --- a/absl/time/clock.h +++ b/absl/time/clock.h @@ -22,6 +22,7 @@ #ifndef ABSL_TIME_CLOCK_H_ #define ABSL_TIME_CLOCK_H_ +#include "absl/base/config.h" #include "absl/base/macros.h" #include "absl/time/time.h" @@ -64,7 +65,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) { |