Cope with \r in ref files on Windows.
[jelmer/dulwich-libgit2.git] / dulwich / stdint.h
1 /**
2  * Replacement of gcc' stdint.h for MSVC
3  */
4
5 #ifndef STDINT_H
6 #define STDINT_H
7
8 typedef signed char       int8_t;
9 typedef signed short      int16_t;
10 typedef signed int        int32_t;
11 typedef signed long long  int64_t;
12
13 typedef unsigned char       uint8_t;
14 typedef unsigned short      uint16_t;
15 typedef unsigned int        uint32_t;
16 typedef unsigned long long  uint64_t;
17
18
19 #endif