shithub: femtolisp

Download patch

ref: b71e694a565be65d648cd3b70d938b4417622782
parent: a3f28f6f7514b737dc395c93b97708acf45dec7c
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue Jun 18 19:35:35 EDT 2024

exit builtin: fix a warning when building on 9front

--- a/builtins.c
+++ b/builtins.c
@@ -113,7 +113,6 @@
 	if(nargs > 1)
 		argcount(nargs, 1);
 	exit(nargs > 0 ? tofixnum(args[0]) : 0);
-	return FL_NIL;
 }
 
 BUILTIN("symbol", symbol)