10 lines
		
	
	
		
			211 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			211 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "qemu-common.h"
 | 
						|
#include "sysemu/arch_init.h"
 | 
						|
#include "qapi/qmp/qerror.h"
 | 
						|
 | 
						|
CpuDefinitionInfoList *arch_query_cpu_definitions(Error **errp)
 | 
						|
{
 | 
						|
    error_set(errp, QERR_NOT_SUPPORTED);
 | 
						|
    return NULL;
 | 
						|
}
 |