mirror of
https://github.com/kiedtl/fire.git
synced 2024-11-16 04:56: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__
|
#ifdef __OpenBSD__
|
||||||
#include "sys/types.h"
|
#include "sys/types.h"
|
||||||
#else
|
#else
|
||||||
#include "types.h"
|
#include "stdint.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern char *argv0;
|
extern char *argv0;
|
||||||
|
2
colors.h
2
colors.h
@ -7,7 +7,7 @@
|
|||||||
#ifdef __OpenBSD__
|
#ifdef __OpenBSD__
|
||||||
#include "sys/types.h"
|
#include "sys/types.h"
|
||||||
#else
|
#else
|
||||||
#include "types.h"
|
#include "stdint.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define RED 0xdd1111
|
#define RED 0xdd1111
|
||||||
|
2
draw.c
2
draw.c
@ -11,7 +11,7 @@
|
|||||||
#ifdef __OpenBSD__
|
#ifdef __OpenBSD__
|
||||||
#include "sys/types.h"
|
#include "sys/types.h"
|
||||||
#else
|
#else
|
||||||
#include "types.h"
|
#include "stdint.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// arguments
|
// arguments
|
||||||
|
2
draw.h
2
draw.h
@ -4,7 +4,7 @@
|
|||||||
#ifdef __OpenBSD__
|
#ifdef __OpenBSD__
|
||||||
#include "sys/types.h"
|
#include "sys/types.h"
|
||||||
#else
|
#else
|
||||||
#include "types.h"
|
#include "stdint.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct buffer
|
typedef struct buffer
|
||||||
|
4
main.c
4
main.c
@ -9,10 +9,10 @@
|
|||||||
#ifdef __OpenBSD__
|
#ifdef __OpenBSD__
|
||||||
#include "sys/types.h"
|
#include "sys/types.h"
|
||||||
#else
|
#else
|
||||||
#include "types.h"
|
#include "stdint.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION "0.2.0"
|
#define VERSION "0.2.0"
|
||||||
|
|
||||||
// argument parsing (args.h)
|
// argument parsing (args.h)
|
||||||
char *argv0;
|
char *argv0;
|
||||||
|
2
makefile
2
makefile
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
NAME = fire
|
NAME = fire
|
||||||
WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \
|
WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \
|
||||||
-Wold-style-definition -Werror
|
-Wold-style-definition
|
||||||
|
|
||||||
INC = -Isub/termbox_next/src
|
INC = -Isub/termbox_next/src
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user