mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
a0939b8916
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220509205728.51912-3-philippe.mathieu.daude@gmail.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
10 lines
205 B
C
10 lines
205 B
C
#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 */
|