glfw: add terminate function

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-07-16 15:24:45 -07:00
parent 7cae2818f3
commit 2bb3b934e1
2 changed files with 30 additions and 6 deletions

View file

@ -4,5 +4,5 @@ const testing = std.testing;
const glfw = @import("glfw");
test "glfw_basic" {
glfw.basicTest();
glfw.basicTest() catch unreachable;
}