From 5bb7d8615650a4743d963a755861a9ac518f719c Mon Sep 17 00:00:00 2001 From: sBubshait Date: Wed, 5 Jun 2024 21:30:41 +0100 Subject: [PATCH] Fix syntax, add new line in end of file and # before include, w/ T --- src/a64instruction_Directive.h | 4 ++-- src/a64instruction_Label.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/a64instruction_Directive.h b/src/a64instruction_Directive.h index 797b9c3..5c70dd4 100644 --- a/src/a64instruction_Directive.h +++ b/src/a64instruction_Directive.h @@ -1,5 +1,5 @@ -include "global.h" +#include "global.h" typedef struct { dword value; -} a64inst_DirectiveData; \ No newline at end of file +} a64inst_DirectiveData; diff --git a/src/a64instruction_Label.h b/src/a64instruction_Label.h index b80979e..b1d26e9 100644 --- a/src/a64instruction_Label.h +++ b/src/a64instruction_Label.h @@ -1,3 +1,3 @@ typedef struct { char* label; -} a64inst_LabelData; \ No newline at end of file +} a64inst_LabelData;