csci4061/notes/04-making-processes-code/complain.c

10 lines
240 B
C
Raw Permalink Normal View History

2018-01-29 23:28:37 +00:00
// Simple program that can be run with the the child-labor or
// child-wait programs. Returns a nonzero exti code.
#include <stdio.h>
int main(){
printf("COMPLAIN: God this sucks. On a scale of 0 to 10 I hate pa ...\n");
return 10;
}