blob: d0463409bde330a017d7c0fb8785d11a8d8e271d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#pragma once
// All of the different builtin modules can be included by including this one
// import
#include <math.h>
#include <stdbool.h>
#include <stdint.h>
#include <sys/param.h>
#include "bools.h"
#include "bytes.h"
#include "c_strings.h"
#include "datatypes.h"
#include "enums.h"
#include "files.h"
#include "functiontype.h"
#include "integers.h"
#include "lists.h"
#include "memory.h"
#include "metamethods.h"
#include "nums.h"
#include "optionals.h"
#include "paths.h"
#include "pointers.h"
#include "print.h"
#include "siphash.h"
#include "stacktrace.h"
#include "structs.h"
#include "tables.h"
#include "text.h"
#include "types.h"
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|