35 lines
657 B
C
35 lines
657 B
C
#ident "$Revision: 1.3 $"
|
|
/******************************************************************
|
|
*
|
|
* Copyright 1991 Spider Systems Limited
|
|
*
|
|
* UINT.H
|
|
*
|
|
******************************************************************/
|
|
|
|
/*
|
|
* /projects/common/PBRAIN/SCCS/pbrainF/dev/src/include/sys/snet/0/s.uint.h
|
|
* @(#)uint.h 1.4
|
|
*
|
|
* UINT.H
|
|
*
|
|
* Last delta created 16:59:14 1/14/91
|
|
* This file extracted 14:53:30 11/13/92
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* Fixed-length types
|
|
*/
|
|
#ifndef UINT_H
|
|
#define UINT_H
|
|
typedef unsigned char uint8;
|
|
typedef unsigned short uint16;
|
|
typedef unsigned int uint32;
|
|
|
|
typedef char int8;
|
|
typedef short int16;
|
|
typedef int int32;
|
|
|
|
#endif
|