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