#define _GNU_SOURCE
#include <sys/time.h>
#include <stdio.h>      /* standard I/O                */
#include <stdlib.h>     /* for exit   - 1 occurrence   */
#include <unistd.h>
#include <string.h>

int main() {
        FILE *fp;
        fp=fopen("/proc/stat", "r");
        int counter;
	char test[];

	while(FILE)
		 printf("%s\n",test);
                //fprintf(fp, "%s\n", test);

        fclose(fp);
//      printf("%d\n",test);
        return 0;
}

