- Fix for possible unset uid/gid in toproto
 - Fix for default mtree style
 - Update libelf
 - Importing libexecinfo
 - Resynchronize GCC, mpc, gmp, mpfr
 - build.sh: Replace params with show-params.
     This has been done as the make target has been renamed in the same
     way, while a new target named params has been added. This new
     target generates a file containing all the parameters, instead of
     printing it on the console.
 - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org)
     get getservbyport() out of the inner loop
Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
		
	
			
		
			
				
	
	
		
			42 lines
		
	
	
		
			876 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			876 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*	$NetBSD: lesskey.h,v 1.3 2013/09/04 19:44:21 tron Exp $	*/
 | 
						|
 | 
						|
/*
 | 
						|
 * Copyright (C) 1984-2012  Mark Nudelman
 | 
						|
 *
 | 
						|
 * You may distribute under the terms of either the GNU General Public
 | 
						|
 * License or the Less License, as specified in the README file.
 | 
						|
 *
 | 
						|
 * For more information, see the README file.
 | 
						|
 */
 | 
						|
 | 
						|
 | 
						|
/*
 | 
						|
 * Format of a lesskey file:
 | 
						|
 *
 | 
						|
 *	LESSKEY_MAGIC (4 bytes)
 | 
						|
 *	 sections...
 | 
						|
 *	END_LESSKEY_MAGIC (4 bytes)
 | 
						|
 *
 | 
						|
 * Each section is:
 | 
						|
 *
 | 
						|
 *	section_MAGIC (1 byte)
 | 
						|
 *	section_length (2 bytes)
 | 
						|
 *	key table (section_length bytes)
 | 
						|
 */
 | 
						|
#define	C0_LESSKEY_MAGIC	'\0'
 | 
						|
#define	C1_LESSKEY_MAGIC	'M'
 | 
						|
#define	C2_LESSKEY_MAGIC	'+'
 | 
						|
#define	C3_LESSKEY_MAGIC	'G'
 | 
						|
 | 
						|
#define	CMD_SECTION		'c'
 | 
						|
#define	EDIT_SECTION		'e'
 | 
						|
#define	VAR_SECTION		'v'
 | 
						|
#define	END_SECTION		'x'
 | 
						|
 | 
						|
#define	C0_END_LESSKEY_MAGIC	'E'
 | 
						|
#define	C1_END_LESSKEY_MAGIC	'n'
 | 
						|
#define	C2_END_LESSKEY_MAGIC	'd'
 | 
						|
 | 
						|
/* */
 | 
						|
#define	KRADIX		64
 |