Skip to content

Commit 228292d

Browse files
committed
typo: types.h => stdint.h
1 parent 0701008 commit 228292d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

args.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#ifdef __OpenBSD__
1818
#include "sys/types.h"
1919
#else
20-
#include "types.h"
20+
#include "stdint.h"
2121
#endif
2222

2323
extern char *argv0;

colors.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifdef __OpenBSD__
88
#include "sys/types.h"
99
#else
10-
#include "types.h"
10+
#include "stdint.h"
1111
#endif
1212

1313
#define RED 0xdd1111

draw.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#ifdef __OpenBSD__
1212
#include "sys/types.h"
1313
#else
14-
#include "types.h"
14+
#include "stdint.h"
1515
#endif
1616

1717
// arguments

draw.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#ifdef __OpenBSD__
55
#include "sys/types.h"
66
#else
7-
#include "types.h"
7+
#include "stdint.h"
88
#endif
99

1010
typedef struct buffer

main.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
#ifdef __OpenBSD__
1010
#include "sys/types.h"
1111
#else
12-
#include "types.h"
12+
#include "stdint.h"
1313
#endif
1414

15-
#define VERSION "0.2.0"
15+
#define VERSION "0.2.0"
1616

1717
// argument parsing (args.h)
1818
char *argv0;

makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
NAME = fire
88
WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \
9-
-Wold-style-definition -Werror
9+
-Wold-style-definition
1010

1111
INC = -Isub/termbox_next/src
1212

output.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
#define OUTP_H
33
#include <stdio.h>
44

5-
#define PRINT(...) fprintf(stderr, __VA_ARGS__);
5+
#define EPRINT(...) fprintf(stderr, __VA_ARGS__);
66

77
#endif

0 commit comments

Comments
 (0)