summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bin/hilex/c.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hilex/c.l b/bin/hilex/c.l
index e208d76b..ea29abb8 100644
--- a/bin/hilex/c.l
+++ b/bin/hilex/c.l
@@ -106,7 +106,7 @@ register|restrict|return|static|struct|switch|typedef|union|volatile|while |
 	BEGIN(pop = MacroLine);
 	return Macro;
 }
-^"#"[[:blank:]]*"include" {
+^"#"[[:blank:]]*("include"|"import") {
 	BEGIN(pop = MacroInclude);
 	return Macro;
 }