Remove unnecessary typedef. All inclusions of <rpc/auth.h> in the source

tree are preceded by an inclusion of <rpc/types.h>, so the 32-bit fixed sized
type u_int32_t is already available to us.
This commit is contained in:
Jeffrey Hsu 1996-01-31 08:02:11 +00:00
parent 10fd4c5933
commit 128443c87b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13778

View file

@ -28,7 +28,7 @@
*
* from: @(#)auth.h 1.17 88/02/08 SMI
* from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
* $Id: auth.h,v 1.3 1995/05/30 04:55:09 rgrimes Exp $
* $Id: auth.h,v 1.4 1996/01/30 23:31:35 mpp Exp $
*/
/*
@ -68,14 +68,10 @@ enum auth_stat {
AUTH_FAILED=7 /* some unknown reason */
};
#if (mc68000 || sparc || vax || i386 || tahoe || hp300)
typedef u_long u_int32; /* 32-bit unsigned integers */
#endif
union des_block {
struct {
u_int32 high;
u_int32 low;
u_int32_t high;
u_int32_t low;
} key;
char c[8];
};