summaryrefslogtreecommitdiffstats
path: root/private/inc/sys/snet/uint.h
blob: 0132922541f93a39519ed220e63c9bc86cbc281d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*++

Copyright (c) 1991  Microsoft Corporation

Module Name:

    uint.h

Abstract:

    This file contains type definitions used by STREAMS drivers.

Author:

    Eric Chin (ericc)           July 18, 1991

Revision History:

--*/


/******************************************************************
 *
 *  Copyright 1991  Spider Systems Limited
 *
 *  UINT.H
 *
 ******************************************************************/

/*
 *	 /usr/projects/spare/PBRAIN/SCCS/pbrainG/dev/src/include/sys/snet/0/s.uint.h
 *	@(#)uint.h	1.2
 *
 *	UINT.H
 *
 *	Last delta created	12:22:31 3/12/91
 *	This file extracted	08:53:39 7/10/91
 *
#ifdef MOD_HISTORY
 *
 *	Modifications:
 *
 *	JS	14 Jan 91	Added signed types.
#endif
 */

#ifndef _SYS_SNET_UINT_
#define _SYS_SNET_UINT_


/*
 * Fixed-length types
 */

typedef unsigned char   uint8;
typedef unsigned short  uint16;
typedef unsigned long   uint32;

typedef char   int8;
typedef short  int16;
typedef long   int32;

#endif /* _SYS_SNET_UINT_ */