mirror of
				https://git.tukaani.org/xz.git
				synced 2025-11-03 23:12:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			635 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			635 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: 0BSD
 | 
						|
 | 
						|
///////////////////////////////////////////////////////////////////////////////
 | 
						|
//
 | 
						|
/// \file       tuklib_exit.h
 | 
						|
/// \brief      Close stdout and stderr, and exit
 | 
						|
/// \note       Requires tuklib_progname and tuklib_gettext modules
 | 
						|
//
 | 
						|
//  Author:     Lasse Collin
 | 
						|
//
 | 
						|
///////////////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#ifndef TUKLIB_EXIT_H
 | 
						|
#define TUKLIB_EXIT_H
 | 
						|
 | 
						|
#include "tuklib_common.h"
 | 
						|
TUKLIB_DECLS_BEGIN
 | 
						|
 | 
						|
#define tuklib_exit TUKLIB_SYMBOL(tuklib_exit)
 | 
						|
tuklib_attr_noreturn
 | 
						|
extern void tuklib_exit(int status, int err_status, int show_error);
 | 
						|
 | 
						|
TUKLIB_DECLS_END
 | 
						|
#endif
 |