Add #define for main exit code

This commit is contained in:
Alexander Heldt
2024-08-03 11:55:27 +02:00
parent 8c8a72df71
commit cc8380759b
6 changed files with 33 additions and 24 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
#define exit 42
int main(void) {
return 42;
return exit;
}