mirror of
				https://github.com/GrapheneOS/hardened_malloc.git
				synced 2025-11-04 09:46:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			165 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			165 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef TEST_UTIL_H
 | 
						|
#define TEST_UTIL_H
 | 
						|
 | 
						|
#ifdef __clang__
 | 
						|
#define OPTNONE __attribute__((optnone))
 | 
						|
#else
 | 
						|
#define OPTNONE __attribute__((optimize(0)))
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |