aboutsummaryrefslogtreecommitdiff
path: root/lib/inst.c
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-04-12 17:32:58 +0630
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-04-12 17:32:58 +0630
commit72585772efed4a238050f4f6ca9ec97e352f2684 (patch)
tree6e1a79c6f850774a9713fbc87841265c34d4b2b9 /lib/inst.c
parenta8a2c50a8f27641dbdaa510df62c40edc77bce01 (diff)
downloadovm-72585772efed4a238050f4f6ca9ec97e352f2684.tar.gz
ovm-72585772efed4a238050f4f6ca9ec97e352f2684.tar.bz2
ovm-72585772efed4a238050f4f6ca9ec97e352f2684.zip
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.
Diffstat (limited to 'lib/inst.c')
-rw-r--r--lib/inst.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inst.c b/lib/inst.c
index eb8b5d2..f3f0598 100644
--- a/lib/inst.c
+++ b/lib/inst.c
@@ -10,13 +10,13 @@
* Description: Implementation of bytecode for instructions
*/
+#include "./inst.h"
+
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
-#include "./inst.h"
-
const char *opcode_as_cstr(opcode_t code)
{
switch (code)