Oops, peg option issue fixed.

This commit is contained in:
Calvin Rose 2019-02-17 21:25:30 -05:00
parent 1e70c97ef0
commit ffc14f6019
2 changed files with 4 additions and 2 deletions

View File

@ -20,8 +20,6 @@
* IN THE SOFTWARE.
*/
#ifdef JANET_PEG
#ifndef JANET_AMALG
#include <janet/janet.h>
#include <string.h>
@ -30,6 +28,8 @@
#include "util.h"
#endif
#ifdef JANET_PEG
/*
* Runtime
*/

View File

@ -86,6 +86,8 @@ void janet_lib_asm(JanetTable *env);
#endif
void janet_lib_compile(JanetTable *env);
void janet_lib_debug(JanetTable *env);
#ifdef JANET_PEG
void janet_lib_peg(JanetTable *env);
#endif
#endif