1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-08 18:02:23 +05:30

bool-operations.c: args: use (void) instead of ()

This commit is contained in:
Intel A80486DX2-66 2024-04-21 23:44:56 +03:00
parent f47eeaa6a1
commit c184b0251a
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -15,7 +15,7 @@
BOOL_TO_STR(boolean), \
(uintmax_t) boolean)
int main() {
int main(void) {
bool boolean = false;
printf("Loop:\n");
for (uint8_t i = 0; i < 3; i++) {