diff options
Diffstat (limited to 'std')
-rw-r--r-- | std/bool.c | 9 | ||||
-rw-r--r-- | std/int.c | 10 | ||||
-rw-r--r-- | std/nil.c | 6 | ||||
-rw-r--r-- | std/ref.c | 6 | ||||
-rw-r--r-- | std/str.c | 6 |
5 files changed, 18 insertions, 19 deletions
@@ -1,10 +1,9 @@ #include <stdio.h> #include <stdlib.h> -#include "../src/err.h" -#include "../api/vm.h" -#include "../api/util.h" -#include "../api/bool.h" - +#include "common/err.h" +#include "api/vm.h" +#include "api/util.h" +#include "api/bool.h" static inline bool get_bool_arg(UwUVMArgs *args, size_t i) { @@ -1,10 +1,10 @@ #include <stdio.h> #include <stdlib.h> -#include "../src/err.h" -#include "../api/vm.h" -#include "../api/int.h" -#include "../api/bool.h" -#include "../api/util.h" +#include "common/err.h" +#include "api/vm.h" +#include "api/int.h" +#include "api/bool.h" +#include "api/util.h" typedef enum { @@ -1,6 +1,6 @@ -#include "../src/err.h" -#include "../api/nil.h" -#include "../api/util.h" +#include "common/err.h" +#include "api/nil.h" +#include "api/util.h" UwUVMValue uwu_nil(UwUVMArgs *args) { @@ -1,6 +1,6 @@ -#include "../src/err.h" -#include "../api/ref.h" -#include "../api/util.h" +#include "common/err.h" +#include "api/ref.h" +#include "api/util.h" UwUVMValue uwu_call(UwUVMArgs *args) { @@ -1,8 +1,8 @@ #include <string.h> #include <stdlib.h> -#include "../api/vm.h" -#include "../api/str.h" -#include "../api/util.h" +#include "api/vm.h" +#include "api/str.h" +#include "api/util.h" UwUVMValue uwu_cat(UwUVMArgs *args) { |