From 72585772efed4a238050f4f6ca9ec97e352f2684 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 12 Apr 2024 17:32:58 +0630 Subject: Fixing build problems due to endian.h Have to define _DEFAULT_SOURCE before you can use the endian conversion functions. As most standard library headers use features.h, and _DEFAULT_SOURCE must be defined before features.h is included, we have to include base.h before other headers. --- lib/inst.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/inst.h') diff --git a/lib/inst.h b/lib/inst.h index e6225a6..fdba26f 100644 --- a/lib/inst.h +++ b/lib/inst.h @@ -13,12 +13,12 @@ #ifndef INST_H #define INST_H -#include -#include - #include #include +#include +#include + typedef enum { OP_NOOP = 0, -- cgit v1.2.3-13-gbd6f