diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-05 03:41:44 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-05 21:34:27 -0600 |
commit | 8a39cfe7f245bea8b3a458238b694de13c61b88a (patch) | |
tree | 9969e8e902bedacdde3ebef0ed7ec6a2f0b23618 /libmisc/tests | |
parent | d291799fc5bb4fa1bde757c1a78646b0dc2551a1 (diff) |
SYSTEM headers don't get strict GCC checks, so change them to PUBLIC
Diffstat (limited to 'libmisc/tests')
-rw-r--r-- | libmisc/tests/test_macro.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libmisc/tests/test_macro.c b/libmisc/tests/test_macro.c index 69655d1..1320eb3 100644 --- a/libmisc/tests/test_macro.c +++ b/libmisc/tests/test_macro.c @@ -27,7 +27,6 @@ int main() { /* ... */ test_assert(LM_NEXT_POWER_OF_2(0x8000000000000000-1) == 0x8000000000000000); /* Valid up to 0x8000000000000000-1 = (1<<63)-1 */ - test_assert(LM_NEXT_POWER_OF_2(0x8000000000000000) == 0); /* :( */ printf("== LM_FLOORLOG2 ===========================================\n"); /* valid down to 1. */ |