diff options
| author | martincohen <m@coh.io> | 2019-09-02 12:08:51 +0200 |
|---|---|---|
| committer | martincohen <m@coh.io> | 2019-09-02 12:08:51 +0200 |
| commit | 3eff120cfffbd6b9285208a02269927235d59693 (patch) | |
| tree | ea32d83184a7f66ee52722d5e1977757707a13cd /sokol_time.h | |
| parent | d476a22a51f195976fb6a61a449603125b8cbb9f (diff) | |
ifdef guards
Diffstat (limited to 'sokol_time.h')
| -rw-r--r-- | sokol_time.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sokol_time.h b/sokol_time.h index e1f24fd6..d3e4c2a3 100644 --- a/sokol_time.h +++ b/sokol_time.h @@ -1,4 +1,4 @@ -#pragma once +#ifndef SOKOL_TIME_INCLUDED /* sokol_time.h -- simple cross-platform time measurement @@ -119,6 +119,7 @@ SOKOL_API_DECL double stm_ns(uint64_t ticks); #ifdef __cplusplus } /* extern "C" */ #endif +#endif // SOKOL_TIME_INCLUDED /*-- IMPLEMENTATION ----------------------------------------------------------*/ #ifdef SOKOL_IMPL |