diff options
Diffstat (limited to 'stdlib/tomo.h')
| -rw-r--r-- | stdlib/tomo.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/stdlib/tomo.h b/stdlib/tomo.h new file mode 100644 index 00000000..7db0f490 --- /dev/null +++ b/stdlib/tomo.h @@ -0,0 +1,34 @@ +#pragma once + +// All of the different builtin modules can be included by including this one +// import + +#include <gc.h> +#include <gmp.h> +#include <stdbool.h> +#include <stdint.h> +#include <sys/param.h> + +#include "arrays.h" +#include "bools.h" +#include "c_strings.h" +#include "channels.h" +#include "datatypes.h" +#include "functiontype.h" +#include "integers.h" +#include "memory.h" +#include "metamethods.h" +#include "nums.h" +#include "optionals.h" +#include "paths.h" +#include "patterns.h" +#include "pointers.h" +#include "ranges.h" +#include "shell.h" +#include "siphash.h" +#include "tables.h" +#include "text.h" +#include "threads.h" +#include "types.h" + +// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
