From 80d255e8efbf718a7bd6cac9cf8478a6e2e72a37 Mon Sep 17 00:00:00 2001 From: lyon Date: Sun, 20 Feb 2022 05:47:35 +0800 Subject: [PATCH] restore parser_multilinetoasm api --- src/PikaParser.h | 3 +++ src/PikaVM.c | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/PikaParser.h b/src/PikaParser.h index 6df6e8bb1..540d0b674 100644 --- a/src/PikaParser.h +++ b/src/PikaParser.h @@ -30,4 +30,7 @@ #include "dataQueueObj.h" #include "dataStack.h" +char* Parser_multiLineToAsm(Args* outBuffs, char* multiLine); + + #endif diff --git a/src/PikaVM.c b/src/PikaVM.c index 1506bfc11..c861cfefb 100644 --- a/src/PikaVM.c +++ b/src/PikaVM.c @@ -35,9 +35,6 @@ #include "dataQueueObj.h" #include "dataStrs.h" -/* private head */ -char* Parser_multiLineToAsm(Args* outBuffs, char* multiLine); - /* local head */ VM_Parameters* pikaVM_runAsmWithPars(PikaObj* self, VM_Parameters* locals,