diff options
author | peter <peter@FreeBSD.org> | 2001-09-10 01:15:48 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-09-10 01:15:48 +0000 |
commit | ee6e4387ac9430f9cc23a1000dbeba63b69a21b4 (patch) | |
tree | 14dc8c2331e7a556730b00c0f48a0a2826a160f7 /include/rpc | |
parent | 5aa06710976c832fc1641a678f70a773fa65254c (diff) | |
download | FreeBSD-src-ee6e4387ac9430f9cc23a1000dbeba63b69a21b4.zip FreeBSD-src-ee6e4387ac9430f9cc23a1000dbeba63b69a21b4.tar.gz |
Stop gcc's fixincludes making an exception for this file
Diffstat (limited to 'include/rpc')
-rw-r--r-- | include/rpc/des.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/rpc/des.h b/include/rpc/des.h index f41e5a7..74fa332 100644 --- a/include/rpc/des.h +++ b/include/rpc/des.h @@ -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 |