some-usable-scripts/C_Language/TP_SYS/tp_sema/consommateur.c

17 lines
261 B
C
Raw Normal View History

2011-03-17 16:37:36 +01:00
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "constantes.h"
#include "types.h"
2011-03-17 16:37:36 +01:00
int main( int argc, char **argv)
{
2011-03-17 17:31:26 +01:00
if(argc < 2) { printf("Usage : %s numIPC\n"); exit(EXIT_FAILURE); }
int clef = atoi(argv[1]);
2011-03-17 16:37:36 +01:00
exit(EXIT_SUCCESS);
}