From 09f1b581460529a807b0a6f6e18d5359b280f2e4 Mon Sep 17 00:00:00 2001 From: ManuelMcLure Date: Sat, 4 May 2019 20:55:51 -0700 Subject: [PATCH] Fix HOST_PROMPT_SUPPORT compile issue (#13847) --- Marlin/src/feature/host_actions.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/feature/host_actions.h b/Marlin/src/feature/host_actions.h index e6f77cb63c..b521f26a35 100644 --- a/Marlin/src/feature/host_actions.h +++ b/Marlin/src/feature/host_actions.h @@ -21,7 +21,9 @@ */ #pragma once -#include "../inc/MarlinConfig.h" +#include "../inc/MarlinConfigPre.h" + +#include void host_action(const char * const pstr, const bool eol=true);