mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-15 20:46:38 +00:00
typo: types.h => stdint.h
This commit is contained in:
parent
0701008aea
commit
228292d9f9
2
args.h
2
args.h
@ -17,7 +17,7 @@
|
||||
#ifdef __OpenBSD__
|
||||
#include "sys/types.h"
|
||||
#else
|
||||
#include "types.h"
|
||||
#include "stdint.h"
|
||||
#endif
|
||||
|
||||
extern char *argv0;
|
||||
|
2
colors.h
2
colors.h
@ -7,7 +7,7 @@
|
||||
#ifdef __OpenBSD__
|
||||
#include "sys/types.h"
|
||||
#else
|
||||
#include "types.h"
|
||||
#include "stdint.h"
|
||||
#endif
|
||||
|
||||
#define RED 0xdd1111
|
||||
|
2
draw.c
2
draw.c
@ -11,7 +11,7 @@
|
||||
#ifdef __OpenBSD__
|
||||
#include "sys/types.h"
|
||||
#else
|
||||
#include "types.h"
|
||||
#include "stdint.h"
|
||||
#endif
|
||||
|
||||
// arguments
|
||||
|
2
draw.h
2
draw.h
@ -4,7 +4,7 @@
|
||||
#ifdef __OpenBSD__
|
||||
#include "sys/types.h"
|
||||
#else
|
||||
#include "types.h"
|
||||
#include "stdint.h"
|
||||
#endif
|
||||
|
||||
typedef struct buffer
|
||||
|
4
main.c
4
main.c
@ -9,10 +9,10 @@
|
||||
#ifdef __OpenBSD__
|
||||
#include "sys/types.h"
|
||||
#else
|
||||
#include "types.h"
|
||||
#include "stdint.h"
|
||||
#endif
|
||||
|
||||
#define VERSION "0.2.0"
|
||||
#define VERSION "0.2.0"
|
||||
|
||||
// argument parsing (args.h)
|
||||
char *argv0;
|
||||
|
2
makefile
2
makefile
@ -6,7 +6,7 @@
|
||||
|
||||
NAME = fire
|
||||
WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \
|
||||
-Wold-style-definition -Werror
|
||||
-Wold-style-definition
|
||||
|
||||
INC = -Isub/termbox_next/src
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user