diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-04-15 08:11:38 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-04-15 08:11:38 +0200 |
commit | 01ea5ec5aeb50ed9801a457a7ced1c541d63f7c8 (patch) | |
tree | acbdc0ace86b40328fa15d199c625a1bc60366c9 /stackless_coroutine.c | |
parent | af8c9212a029ddaf8e7eef66cecaa762263ca0c5 (diff) | |
download | reduced_system_layer-01ea5ec5aeb50ed9801a457a7ced1c541d63f7c8.zip |
Update docs; Add key repeat flag; Fix fill rectangle
Diffstat (limited to 'stackless_coroutine.c')
-rwxr-xr-x | stackless_coroutine.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/stackless_coroutine.c b/stackless_coroutine.c index 6efb1c9..cb169e1 100755 --- a/stackless_coroutine.c +++ b/stackless_coroutine.c @@ -7,6 +7,8 @@ #/ #/ (C) 2025 Mitya Selivanov <guattari.tech> #/ +#/ Any use of this code is prohibited. +#/ #/ ================================================================ #/ #/ Self-testing shell script @@ -19,6 +21,9 @@ gcc \ -Wno-missing-braces \ -Wno-old-style-declaration \ -Wno-overlength-strings \ + -Wno-unused-parameter \ + -Wno-unused-variable \ + -Wno-unused-but-set-variable \ -O3 -D NDEBUG \ -D STACKLESS_COROUTINE_TEST_SUITE \ -o $BIN $SRC && \ |