Clean up includes so that osdep.h is included first and headers which it implies are not included manually. This commit was created with scripts/clean-includes. NB: If this commit breaks compilation for your out-of-tree patchseries or fork, then you need to make sure you add #include "qemu/osdep.h" to any new .c files that you have. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			506 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			506 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * JSON Parser 
 | 
						|
 *
 | 
						|
 * Copyright IBM, Corp. 2009
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *  Anthony Liguori   <aliguori@us.ibm.com>
 | 
						|
 *
 | 
						|
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 | 
						|
 * See the COPYING.LIB file in the top-level directory.
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef QEMU_JSON_PARSER_H
 | 
						|
#define QEMU_JSON_PARSER_H
 | 
						|
 | 
						|
#include "qemu-common.h"
 | 
						|
#include "qapi/qmp/qlist.h"
 | 
						|
 | 
						|
QObject *json_parser_parse(GQueue *tokens, va_list *ap);
 | 
						|
QObject *json_parser_parse_err(GQueue *tokens, va_list *ap, Error **errp);
 | 
						|
 | 
						|
#endif
 |