int uname(struct utsname *Informations);
La zone mémoire Informations avec les informations demandées.
#include <stdio.h>
#include <stdlib.h>
#include <sys/utsname.h>
struct utsname Informations;
...
memset(&Informations, 0, sizeof(struct utsname));
if (uname(&Informations)==-1)
{
...
}
...