mirror of
				https://github.com/facebook/zstd.git
				synced 2025-11-03 20:33:11 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			394 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			394 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef LINUX_MODULE_H_
 | 
						|
#define LINUX_MODULE_H_
 | 
						|
 | 
						|
#define EXPORT_SYMBOL(symbol)                                                  \
 | 
						|
  void* __##symbol = symbol
 | 
						|
#define MODULE_LICENSE(license) static char const *const LICENSE = license
 | 
						|
#define MODULE_DESCRIPTION(description)                                        \
 | 
						|
  static char const *const DESCRIPTION = description
 | 
						|
 | 
						|
#endif // LINUX_MODULE_H_
 |