hare

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

commit f334db3ab5c3e91db8e9dc2aa95c166f372f10a7
parent 8b7db053b1a414057a231c11dd40b3ef43e9140c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 30 Jan 2021 18:56:35 -0500

os::getenv: remove `return void`

Diffstat:
Mos/+linux/environ.ha | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/os/+linux/environ.ha b/os/+linux/environ.ha @@ -44,5 +44,4 @@ export fn getenv(name: str) (str | void) = { return strings::from_utf8(item[eq+1z..ln]); }; }; - return void; };