lang: add missing includes
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
#include "lex.h"
|
||||
|
||||
#include <blue/core/hash.h>
|
||||
#include <blue/core/queue.h>
|
||||
#include <blue/object/string.h>
|
||||
#include <blue/object/dict.h>
|
||||
#include <blue/object/number.h>
|
||||
#include <blue/object/string.h>
|
||||
#include <ctype.h>
|
||||
#include <ivy/lang/lex.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include "lex.h"
|
||||
#include <wctype.h>
|
||||
|
||||
#define LINEBUF_DEFAULT_CAPACITY 1024
|
||||
|
||||
|
||||
@@ -2,8 +2,10 @@
|
||||
#define _LEX_H_
|
||||
|
||||
#include <blue/core/queue.h>
|
||||
#include <blue/object/string.h>
|
||||
#include <blue/object/dict.h>
|
||||
#include <blue/object/string.h>
|
||||
#include <ivy/lang/lex.h>
|
||||
#include <ivy/status.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct ivy_lexer {
|
||||
|
||||
Reference in New Issue
Block a user