first commit

This commit is contained in:
Ronan Fourneuve
2025-08-08 09:54:34 +02:00
commit 1c993ece2d
8 changed files with 196 additions and 0 deletions

18
ANALE-1/SUJET/p2.c Normal file
View File

@@ -0,0 +1,18 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/shm.h>
#include "dijkstra.h"
#include "commun.h"
void t3()
{
puts("t3");
sleep(7);
puts("end t3");
}
int main () {
t3();
return 0;
}