c-basic/fail.c

11 lines
199 B
C
Raw Normal View History

2022-11-24 19:38:53 +01:00
#include <stdio.h>
/*
* This program has the purpose of returning a -1 value, indicating the shell that something has gone wrong
* while the program was running.
*/
int main(){
return -1;
}