diff options
Diffstat (limited to 'rts/linker/util.h')
-rw-r--r-- | rts/linker/util.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/rts/linker/util.h b/rts/linker/util.h index 77f06978ab..6f08729075 100644 --- a/rts/linker/util.h +++ b/rts/linker/util.h @@ -1,5 +1,4 @@ -#if !defined(RTS_LINKER_UTIL_H) -#define RTS_LINKER_UTIL_H +#pragma once #include <stdint.h> #include <stdbool.h> @@ -26,5 +25,3 @@ isInt64(uint32_t bits, int64_t x) { return bits > 64 || (-((int64_t)1 << (bits-1)) <= x && x < ((int64_t)1 << (bits-1))); } - -#endif //RTS_LINKER_UTIL_H |