xref: /qemu/linux-user/i386/target_elf.h (revision d135f781)
1542ca434SLaurent Vivier /*
2542ca434SLaurent Vivier  * This program is free software; you can redistribute it and/or modify
3542ca434SLaurent Vivier  * it under the terms of the GNU General Public License version 2 as
4542ca434SLaurent Vivier  * published by the Free Software Foundation, or (at your option) any
5542ca434SLaurent Vivier  * later version. See the COPYING file in the top-level directory.
6542ca434SLaurent Vivier  */
7542ca434SLaurent Vivier 
8542ca434SLaurent Vivier #ifndef I386_TARGET_ELF_H
9542ca434SLaurent Vivier #define I386_TARGET_ELF_H
cpu_get_model(uint32_t eflags)10542ca434SLaurent Vivier static inline const char *cpu_get_model(uint32_t eflags)
11542ca434SLaurent Vivier {
12d135f781SDaniel P. Berrangé     return "max";
13542ca434SLaurent Vivier }
14542ca434SLaurent Vivier #endif
15