Some source files #include the same header more than once for no good reason. Remove second #includes in such cases. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
		
			
				
	
	
		
			25 lines
		
	
	
		
			657 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			657 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef QEMU_CONFIG_H
 | 
						|
#define QEMU_CONFIG_H
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include "qemu/option.h"
 | 
						|
#include "qapi/error.h"
 | 
						|
 | 
						|
QemuOptsList *qemu_find_opts(const char *group);
 | 
						|
QemuOptsList *qemu_find_opts_err(const char *group, Error **errp);
 | 
						|
void qemu_add_opts(QemuOptsList *list);
 | 
						|
int qemu_set_option(const char *str);
 | 
						|
int qemu_global_option(const char *str);
 | 
						|
void qemu_add_globals(void);
 | 
						|
 | 
						|
void qemu_config_write(FILE *fp);
 | 
						|
int qemu_config_parse(FILE *fp, QemuOptsList **lists, const char *fname);
 | 
						|
 | 
						|
int qemu_read_config_file(const char *filename);
 | 
						|
 | 
						|
/* Read default QEMU config files
 | 
						|
 */
 | 
						|
int qemu_read_default_config_files(bool userconfig);
 | 
						|
 | 
						|
#endif /* QEMU_CONFIG_H */
 |