1 // RUN: %clang %s -o %t && %run %t
2 
3 #include <assert.h>
4 #include <stdio.h>
5 #include <sys/utsname.h>
6 
main()7 int main() {
8   struct utsname buf;
9   int err = uname(&buf);
10   assert(err >= 0);
11   printf("%s %s %s %s %s\n", buf.sysname, buf.nodename, buf.release,
12          buf.version, buf.machine);
13 }
14