File: bitsizes.h

package info (click to toggle)
mgetty 1.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,872 kB
  • sloc: ansic: 42,728; sh: 6,487; perl: 6,262; makefile: 1,457; tcl: 756; lisp: 283
file content (21 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * bitsizes.h
 *
 * Declaration for variable types with defined bit sizes
 *
 * $Id: bitsizes.h,v 1.4 1998/09/09 21:06:32 gert Exp $
 *
 */

typedef short              vgetty_s_int16;
typedef unsigned short     vgetty_u_int16;
typedef int                vgetty_s_int32;
typedef unsigned int       vgetty_u_int32;

#ifdef linux
 typedef int64_t            vgetty_s_int64;
 typedef u_int64_t          vgetty_u_int64;
#else
 typedef long long          vgetty_s_int64;
 typedef unsigned long long vgetty_u_int64;
#endif