11 lines
199 B
C
11 lines
199 B
C
|
#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;
|
||
|
}
|