fucking hell

This commit is contained in:
anon 2024-07-16 00:54:16 +02:00
parent 98ad8e18e3
commit 5ed4f0f407
4 changed files with 6 additions and 9 deletions

View File

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

View File

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

View File

@ -1,5 +1,3 @@
#define _GNU_SOURCE
#include "eaxhla.h"
/* This source file is responsible for holding data

View File

@ -2,8 +2,6 @@
#include "eaxhla.h"
}
%{
#define _GNU_SOURCE
#include <stdio.h>
#include <math.h>