mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			329 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			329 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Declarate _sanity() if not declared in main program */
 | |
| 
 | |
| #include <my_global.h>
 | |
| 
 | |
| extern int _sanity(const char *file,uint line);
 | |
| 
 | |
| #if defined(SAFEMALLOC) && !defined(MASTER)	/* Avoid errors in MySQL */
 | |
| int _sanity(const char * file __attribute__((unused)),
 | |
|             uint line __attribute__((unused)))
 | |
| {
 | |
|   return 0;
 | |
| }
 | |
| #endif
 | 
