~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/ipxe/src/arch/x86_64/include/bits/stdint.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _BITS_STDINT_H
 
2
#define _BITS_STDINT_H
 
3
 
 
4
typedef __SIZE_TYPE__           size_t;
 
5
typedef signed long             ssize_t;
 
6
typedef signed long             off_t;
 
7
 
 
8
typedef unsigned char           uint8_t;
 
9
typedef unsigned short          uint16_t;
 
10
typedef unsigned int            uint32_t;
 
11
typedef unsigned long long      uint64_t;
 
12
 
 
13
typedef signed char             int8_t;
 
14
typedef signed short            int16_t;
 
15
typedef signed int              int32_t;
 
16
typedef signed long long        int64_t;
 
17
 
 
18
typedef unsigned long           physaddr_t;
 
19
typedef unsigned long           intptr_t;
 
20
 
 
21
#endif /* _BITS_STDINT_H */