X-Git-Url: https://git.piment-noir.org/?p=TD_SE.git;a=blobdiff_plain;f=TD3%2Fexo4%2Fexo4.c;h=a5ffce32ae087b31a072c73737d8a97e2037e9e1;hp=40337f6eb54225dacbffa417ee692a92379883ce;hb=151a0f5636afe11afad9428f737e71372a4c24e4;hpb=4ed359e8f4a3ded5357fd63f276dafec2642cb57 diff --git a/TD3/exo4/exo4.c b/TD3/exo4/exo4.c index 40337f6..a5ffce3 100644 --- a/TD3/exo4/exo4.c +++ b/TD3/exo4/exo4.c @@ -35,14 +35,13 @@ int main(void) if (fork() == 0) { signal(SIGINT, sigintF); while (1) { - printf("ici fils \n"); + printf("ici fils\n"); sleep(1); } } while (1) { signal(SIGINT, sigintP); - printf("ici pere \n"); + printf("ici pere\n"); sleep(1); } - return 0; }