Add missing dependency.

This commit is contained in:
David Given
2025-03-18 01:19:58 +01:00
parent f89adce02d
commit 5d57957a6e

View File

@@ -1,3 +1,7 @@
from build.c import clibrary
clibrary(name="emu", srcs=["./fnmatch.c"], hdrs={"fnmatch.h": "./fnmatch.h"})
clibrary(
name="emu",
srcs=["./fnmatch.c", "./charclass.h"],
hdrs={"fnmatch.h": "./fnmatch.h"},
)