source: bootcd/isolinux/syslinux-6.03/com32/include/bitsize64/stdint.h

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 446 bytes
Line 
1/*
2 * bits64/stdint.h
3 */
4
5
6typedef long int                int64_t;
7
8typedef unsigned long int       uint64_t;
9
10typedef long int                int_fast16_t;
11typedef long int                int_fast32_t;
12
13typedef unsigned long int       uint_fast16_t;
14typedef unsigned long int       uint_fast32_t;
15
16typedef long int                intptr_t;
17typedef unsigned long int       uintptr_t;
18
19#define __INT64_C(c)  c ## L
20#define __UINT64_C(c) c ## UL
21
22#define __PRI64_RANK    "l"
23#define __PRIFAST_RANK  "l"
24#define __PRIPTR_RANK   "l"
Note: See TracBrowser for help on using the repository browser.