Stop gcc's fixincludes making an exception for this file

This commit is contained in:
Peter Wemm 2001-09-10 01:15:48 +00:00
parent a804e4ad3d
commit c7a6361316
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83265

View File

@ -1,4 +1,5 @@
/* @(#)des.h 2.2 88/08/10 4.0 RPCSRC; from 2.7 88/02/08 SMI */
/* $FreeBSD$ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
* unrestricted use provided that this legend is included on all tape
@ -67,12 +68,12 @@ struct desparams {
/*
* Encrypt an arbitrary sized buffer
*/
#define DESIOCBLOCK _IOWR(d, 6, struct desparams)
#define DESIOCBLOCK _IOWR('d', 6, struct desparams)
/*
* Encrypt of small amount of data, quickly
*/
#define DESIOCQUICK _IOWR(d, 7, struct desparams)
#define DESIOCQUICK _IOWR('d', 7, struct desparams)
#endif