Closed LordAro closed 2 months ago
Figured I might as well do it.
https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/Alternate-Keywords.html#Alternate-Keywords
The keywords asm, typeof and inline are not available in programs compiled with -ansi or -std
Guess that's what's done it. Again, no idea why it's not been an issue for anyone else.
Also tidied up volatile usage (which is allowed with -std=c99)
volatile
-std=c99
Fixes #102
@sjaeckel is this something we want/need to backport to libtomcrypt?
Just for reference:
Figured I might as well do it.
https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/Alternate-Keywords.html#Alternate-Keywords
Guess that's what's done it. Again, no idea why it's not been an issue for anyone else.
Also tidied up
volatile
usage (which is allowed with-std=c99
)Fixes #102