summaryrefslogtreecommitdiff
path: root/src/runtime/c/gu/hash.h
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2017-04-13 11:06:24 +0000
committerkrasimir <krasimir@chalmers.se>2017-04-13 11:06:24 +0000
commita657e9947bbad98e95c65488003cdca2c8c2c625 (patch)
treebb63542e6cb8e03450f6ec033d2a0141f0c17bb1 /src/runtime/c/gu/hash.h
parent7963c8536799c6b4cbeab4ebd106d88bf7185977 (diff)
use GU_API_DATA_DECL instead of GU_API_DATA to make the C runtime compile again on MacOS
Diffstat (limited to 'src/runtime/c/gu/hash.h')
-rw-r--r--src/runtime/c/gu/hash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/c/gu/hash.h b/src/runtime/c/gu/hash.h
index da612f3f4..fb688af01 100644
--- a/src/runtime/c/gu/hash.h
+++ b/src/runtime/c/gu/hash.h
@@ -31,10 +31,10 @@ struct GuHasher {
};
-GU_API_DATA GuHasher gu_int_hasher[1];
+GU_API_DATA_DECL GuHasher gu_int_hasher[1];
-GU_API_DATA GuHasher gu_addr_hasher[1];
+GU_API_DATA_DECL GuHasher gu_addr_hasher[1];
-GU_API_DATA GuHasher gu_word_hasher[1];
+GU_API_DATA_DECL GuHasher gu_word_hasher[1];
#endif // GU_HASH_H_