From 68960e7d0a3cc9a0c3c8a7f5589ae5c0e5a966f1 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 19 Sep 2024 12:39:56 +0100 Subject: [PATCH] Use `#+` tags --- core/crypto/hash/hash_freestanding.odin | 2 +- core/crypto/hash/hash_os.odin | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/crypto/hash/hash_freestanding.odin b/core/crypto/hash/hash_freestanding.odin index 15fd6ab4fe9..bec3c4eee41 100644 --- a/core/crypto/hash/hash_freestanding.odin +++ b/core/crypto/hash/hash_freestanding.odin @@ -1,4 +1,4 @@ -//+build freestanding +#+build freestanding package crypto_hash hash :: proc { diff --git a/core/crypto/hash/hash_os.odin b/core/crypto/hash/hash_os.odin index 1fbaab3fe90..d54e657ad2d 100644 --- a/core/crypto/hash/hash_os.odin +++ b/core/crypto/hash/hash_os.odin @@ -1,4 +1,4 @@ -//+build !freestanding +#+build !freestanding package crypto_hash import "core:io"