mirror of
				https://github.com/projectacrn/acrn-hypervisor.git
				synced 2025-10-31 09:23:34 +00:00 
			
		
		
		
	seperate the function definitions into debug/release directories to better distinguish debug/release libraries Tracked-On: #861 Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			278 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright (C) 2018 Intel Corporation.
 | |
|  * SPDX-License-Identifier: BSD-3-Clause
 | |
|  */
 | |
| 
 | |
| #ifndef NPK_LOG_H
 | |
| #define NPK_LOG_H
 | |
| 
 | |
| struct hv_npk_log_param;
 | |
| 
 | |
| void npk_log_setup(struct hv_npk_log_param *param);
 | |
| void npk_log_write(const char *buf, size_t len);
 | |
| 
 | |
| #endif /* NPK_LOG_H */
 |