hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 3219a3a8509c00b561861c19ecf870497fc9fd0d
parent e7752e7e1996c6b387a19a3b989976ab3fd76f75
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 31 Jan 2022 10:22:02 +0100

mime, os: remove temporary imports

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mmime/lookup.ha | 1-
Mos/+linux/fs.ha | 1-
2 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/mime/lookup.ha b/mime/lookup.ha @@ -1,6 +1,5 @@ use hash::fnv; use strings; -use io; // XXX: TEMP // Looks up a Media Type based on the mime type string, returning null if // unknown. diff --git a/os/+linux/fs.ha b/os/+linux/fs.ha @@ -3,7 +3,6 @@ use fs; use path; use rt; use strings; -use io; @init fn init() void = { static let cwd_fs = os_filesystem { ... };