Commit 12c1ff7 1 parent bcc8164 commit 12c1ff7 Copy full SHA for 12c1ff7
File tree 6 files changed +6
-31
lines changed
6 files changed +6
-31
lines changed Original file line number Diff line number Diff line change 5
5
#include "types.h"
6
6
#include "rgb.h"
7
7
#include <assert.h>
8
-
9
- #if defined(_MSC_VER )
10
- #include "ms_stdint.h"
11
- #else
12
- #include <stdint.h>
13
- #endif
8
+ #include <stdint.h>
14
9
15
10
#ifdef __cplusplus
16
11
extern "C"
Original file line number Diff line number Diff line change 1
1
#ifndef DEADBEEF_RAND_H
2
2
#define DEADBEEF_RAND_H
3
3
4
- #if defined(_MSC_VER )
5
- #include "ms_stdint.h"
6
- #else
7
- #include <stdint.h>
8
- #endif
4
+ #include <stdint.h>
9
5
10
6
#define DEADBEEF_MAX UINT32_MAX
11
7
Original file line number Diff line number Diff line change 4
4
5
5
#include "MMBitmap.h"
6
6
#include <stddef.h>
7
+ #include <stdint.h>
7
8
8
- #if defined(_MSC_VER )
9
- #include "ms_stdint.h"
10
- #else
11
- #include <stdint.h>
12
- #endif
13
9
14
10
enum _MMImageType {
15
11
kInvalidImageType = 0 ,
Original file line number Diff line number Diff line change 5
5
#include <stdlib.h> /* For abs() */
6
6
#include <math.h>
7
7
#include "inline_keywords.h" /* For H_INLINE */
8
+ #include <stdint.h>
8
9
9
- #if defined(_MSC_VER )
10
- #include "ms_stdint.h"
11
- #else
12
- #include <stdint.h>
13
- #endif
14
10
15
11
/* RGB colors in MMBitmaps are stored as BGR for convenience in converting
16
12
* to/from certain formats (mainly OpenGL).
Original file line number Diff line number Diff line change 4
4
5
5
#include "MMBitmap.h"
6
6
#include "io.h"
7
+ #include <stdint.h>
7
8
8
- #if defined(_MSC_VER )
9
- #include "ms_stdint.h"
10
- #else
11
- #include <stdint.h>
12
- #endif
13
9
14
10
enum _MMBMPStringError {
15
11
kMMBMPStringGenericError = 0 ,
Original file line number Diff line number Diff line change 27
27
28
28
#include <string.h> /* memcmp, strlen */
29
29
#include <stddef.h> /* ptrdiff_t */
30
+ #include <stdint.h>
30
31
31
- #if defined(_MSC_VER )
32
- #include "ms_stdint.h"
33
- #else
34
- #include <stdint.h>
35
- #endif
36
32
37
33
#define UTHASH_VERSION 1.8
38
34
You can’t perform that action at this time.
0 commit comments