typo: types.h => stdint.h

This commit is contained in:
Kiëd Llaentenn 2020-09-17 11:42:48 +00:00
parent 0701008aea
commit 228292d9f9
7 changed files with 8 additions and 8 deletions

2
args.h
View File

@ -17,7 +17,7 @@
#ifdef __OpenBSD__
#include "sys/types.h"
#else
#include "types.h"
#include "stdint.h"
#endif
extern char *argv0;

View File

@ -7,7 +7,7 @@
#ifdef __OpenBSD__
#include "sys/types.h"
#else
#include "types.h"
#include "stdint.h"
#endif
#define RED 0xdd1111

2
draw.c
View File

@ -11,7 +11,7 @@
#ifdef __OpenBSD__
#include "sys/types.h"
#else
#include "types.h"
#include "stdint.h"
#endif
// arguments

2
draw.h
View File

@ -4,7 +4,7 @@
#ifdef __OpenBSD__
#include "sys/types.h"
#else
#include "types.h"
#include "stdint.h"
#endif
typedef struct buffer

4
main.c
View File

@ -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;

View File

@ -6,7 +6,7 @@
NAME = fire
WARNING = -Wall -Wextra -pedantic -Wmissing-prototypes \
-Wold-style-definition -Werror
-Wold-style-definition
INC = -Isub/termbox_next/src

View File

@ -2,6 +2,6 @@
#define OUTP_H
#include <stdio.h>
#define PRINT(...) fprintf(stderr, __VA_ARGS__);
#define EPRINT(...) fprintf(stderr, __VA_ARGS__);
#endif