Add #define for main exit code

This commit is contained in:
Alexander Heldt
2024-07-03 12:19:10 +02:00
parent 8c8a72df71
commit cc8380759b
6 changed files with 33 additions and 24 deletions

View File

@@ -1,3 +1,5 @@
#define exit 42
int main(void) {
return 42;
return exit;
}