hare

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

commit 8210f69cec1da3d1ec76614b3def658ebf0fe74b
parent dbebc89f4f79743958d17f0d5694ca1b90a95b39
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sat,  9 Dec 2023 21:17:36 -0500

os+linux: s/Unix/Unix-like/

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mos/+linux/fs.ha | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/os/+linux/fs.ha b/os/+linux/fs.ha @@ -61,7 +61,8 @@ export fn mkfifo(path: str, mode: fs::mode) (void | fs::error) = { }; }; -// Makes a block device node. This function is only available on Unix systems. +// Makes a block device node. This function is only available on Unix-like +// systems. export fn mkblk( path: str, mode: fs::mode, @@ -77,7 +78,8 @@ export fn mkblk( }; }; -// Makes a character device node. This function is only available on Unix systems. +// Makes a character device node. This function is only available on Unix-like +// systems. export fn mkchr( path: str, mode: fs::mode,