fucking hell
This commit is contained in:
parent
98ad8e18e3
commit
5ed4f0f407
2
Makefile
2
Makefile
@ -40,7 +40,7 @@ else
|
||||
WRAP := valgrind --show-error-list=yes --track-origins=yes --leak-check=full --show-leak-kinds=all
|
||||
endif
|
||||
|
||||
CFLAGS += -Wall -Wextra -Wpedantic --std=c2x
|
||||
CFLAGS += -Wall -Wextra -Wpedantic # --std=c2x
|
||||
CPPFLAGS += -Ilibrary/ -I${OBJECT.d} -I${SOURCE.d}
|
||||
LDLIBS := -lm
|
||||
|
||||
|
@ -4,11 +4,12 @@ typedef signed int form;
|
||||
typedef unsigned int next;
|
||||
typedef unsigned char byte;
|
||||
|
||||
// XXX: we could be using binary literals IF SOMEONE WERE WILLING TO UPGRADE HIS GRANNY SYSTEM
|
||||
typedef enum {
|
||||
D8 = 0b00,
|
||||
D16 = 0b01,
|
||||
D32 = 0b10,
|
||||
D64 = 0b11,
|
||||
D8 = 0,
|
||||
D16 = 1,
|
||||
D32 = 2,
|
||||
D64 = 3,
|
||||
} size_index;
|
||||
|
||||
typedef enum {
|
||||
|
@ -1,5 +1,3 @@
|
||||
#define _GNU_SOURCE
|
||||
|
||||
#include "eaxhla.h"
|
||||
|
||||
/* This source file is responsible for holding data
|
||||
|
@ -2,8 +2,6 @@
|
||||
#include "eaxhla.h"
|
||||
}
|
||||
%{
|
||||
#define _GNU_SOURCE
|
||||
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user