xref: /qemu/linux-user/uname.h (revision 2466bb3b083f965ef1ec12368c07e7d1e2f0b4c4)
1 #ifndef UNAME_H
2 #define UNAME_H
3 
4 #include <sys/utsname.h>
5 #include <linux/utsname.h>
6 
7 const char *cpu_to_uname_machine(CPUArchState *cpu_env);
8 int sys_uname(struct new_utsname *buf);
9 
10 #endif /* UNAME_H */
11