blob: 4ae563f46c2976fc2e43f3fb6c57c1cae5b69d8c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef UNAME_H
#define UNAME_H
#include <sys/utsname.h>
#include <linux/utsname.h>
const char *cpu_to_uname_machine(CPUArchState *cpu_env);
int sys_uname(struct new_utsname *buf);
#endif /* UNAME_H */
|