source: buchla-68k/include/stdint.h@ eee74cd

Last change on this file since eee74cd was f7428b1, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Started to rework include files.

  • Property mode set to 100644
File size: 428 bytes
Line 
1/*
2 =============================================================================
3 stdint.h -- fixed-size integer types
4 Version 1 -- 2017-07-10 -- Thomas Lopatic
5 =============================================================================
6*/
7
8#pragma once
9
10typedef char int8_t;
11typedef unsigned char uint8_t;
12
13typedef short int16_t;
14typedef unsigned short uint16_t;
15
16typedef long int32_t;
17typedef unsigned long uint32_t;
Note: See TracBrowser for help on using the repository browser.