Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Corection of the gtnets-ruby bug with node.h and begining of the doc edition.
[simgrid.git] / buildtools / CPACK / prog_test / prog_getline.c
1     #define _GNU_SOURCE
2     #include <stdio.h>
3     int main(void){
4       FILE * fp;
5       char * line = NULL;
6       size_t len = 0;
7       getline(&line, &len, fp);
8     }