csci4061/notes/04-making-processes-code/complain.c
Michael Zhang 041f660ccd
f
2018-01-29 17:28:37 -06:00

9 lines
240 B
C

// 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;
}