shithub: sl

Download patch

ref: 6ddff6aae0a0fd7fe968528c1d671ab18511e1d4
parent: a3e6b8f786519e3d26daad505234713206b2bf72
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)
--