aboutsummaryrefslogtreecommitdiff
path: root/std/nil.c
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2022-01-01 19:44:35 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2022-01-01 19:44:35 +0100
commit31cf3ac5ac7054890810190d6f526ec1eb38c64d (patch)
tree52970f6d6b4c7b402ce0da72a7d3d33dad7ebe94 /std/nil.c
parente031725c41c2970e5bc417f27b9abec79c5b72fb (diff)
downloaduwu-lang-31cf3ac5ac7054890810190d6f526ec1eb38c64d.tar.xz
Turn std into a submodule
Diffstat (limited to 'std/nil.c')
-rw-r--r--std/nil.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/std/nil.c b/std/nil.c
deleted file mode 100644
index cb27dbb..0000000
--- a/std/nil.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "common/err.h"
-#include "api/nil.h"
-#include "api/util.h"
-
-UwUVMValue uwu_nil(UwUVMArgs *args)
-{
- uwuutil_require_exact("nil.nil", args, 0);
- return uwunil_create();
-}
-
-UwUVMValue uwu_is(UwUVMArgs *args)
-{
- return uwuutil_is_type("nil.is", args, &uwunil_type);
-}