diff options
| author | Zephyr Lykos <git@mochaa.ws> | 2024-11-14 16:31:42 +0800 |
|---|---|---|
| committer | Zephyr Lykos <git@mochaa.ws> | 2024-11-14 16:31:42 +0800 |
| commit | b26cab14d0c6df5d83f4c217d4e97d3e4401b33a (patch) | |
| tree | c9100e04b13c9a350362c45ef96cf0592aefac20 | |
| parent | aa9ee3f619b04100fca04707ca6afedca2e964fb (diff) | |
sokol_gfx.h: fix _sg_u128 linkage visibility
| -rw-r--r-- | sokol_gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_gfx.h b/sokol_gfx.h index 1b37c858..6a7dbe6e 100644 --- a/sokol_gfx.h +++ b/sokol_gfx.h @@ -16598,7 +16598,7 @@ typedef struct { uint64_t lo, hi; } _sg_u128_t; -_sg_u128_t _sg_u128(void) { +_SOKOL_PRIVATE _sg_u128_t _sg_u128(void) { _sg_u128_t res; _sg_clear(&res, sizeof(res)); return res; |