 f4814901af
			
		
	
	
		f4814901af
		
	
	
	
	
		
			
			This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
		
			
				
	
	
		
			31 lines
		
	
	
		
			701 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			701 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
| sys/svrctl.h
 | |
| 
 | |
| Created:	Feb 15, 1994 by Philip Homburg <philip@cs.vu.nl>
 | |
| */
 | |
| 
 | |
| #ifndef _SYS__SVRCTL_H
 | |
| #define _SYS__SVRCTL_H
 | |
| 
 | |
| #ifndef _TYPES_H
 | |
| #include <minix/types.h>
 | |
| #endif
 | |
| 
 | |
| /* Server control commands have the same encoding as the commands for ioctls. */
 | |
| #include <minix/ioctl.h>
 | |
| 
 | |
| /* PM controls. */
 | |
| #define PMGETPARAM	_IOW('M',  5, struct sysgetenv)
 | |
| #define PMSETPARAM	_IOR('M',  7, struct sysgetenv)
 | |
| 
 | |
| struct sysgetenv {
 | |
| 	char		*key;		/* Name requested. */
 | |
| 	size_t		keylen;		/* Length of name including \0. */
 | |
| 	char		*val;		/* Buffer for returned data. */
 | |
| 	size_t		vallen;		/* Size of return data buffer. */
 | |
| };
 | |
| 
 | |
| _PROTOTYPE( int svrctl, (int _request, void *_data)			);
 | |
| 
 | |
| #endif /* _SYS__SVRCTL_H */
 |