 aa26bb2dac
			
		
	
	
		aa26bb2dac
		
	
	
	
	
		
			
			Carlos O'Donell. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2540 c046a42c-6fe2-441c-8c8c-71466251a162
		
			
				
	
	
		
			21 lines
		
	
	
		
			380 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			380 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_OSDEP_H
 | |
| #define QEMU_OSDEP_H
 | |
| 
 | |
| #include <stdarg.h>
 | |
| 
 | |
| #define qemu_printf printf
 | |
| 
 | |
| void *qemu_malloc(size_t size);
 | |
| void *qemu_mallocz(size_t size);
 | |
| void qemu_free(void *ptr);
 | |
| char *qemu_strdup(const char *str);
 | |
| 
 | |
| void *qemu_vmalloc(size_t size);
 | |
| void qemu_vfree(void *ptr);
 | |
| 
 | |
| void *get_mmap_addr(unsigned long size);
 | |
| 
 | |
| int qemu_create_pidfile(const char *filename);
 | |
| 
 | |
| #endif
 |