/* * Copyright (c) 1991 University of Utah. * Copyright (c) 1992 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department. * * %sccs.include.redist.c% * * from: Utah $Hdr: iotypes.h 1.1 91/12/12$ * * @(#)iotypes.h 7.1 (Berkeley) 06/05/92 */ #ifndef _IOTYPES_ #define _IOTYPES_ /* * Where do these really belong? */ typedef volatile char v_char; typedef volatile unsigned char vu_char; typedef volatile short v_short; typedef volatile unsigned short vu_short; typedef volatile int v_int; typedef volatile unsigned int vu_int; #endif