2024-02-04 15:04:41 -08:00
|
|
|
#pragma once
|
|
|
|
|
2024-03-18 09:57:49 -07:00
|
|
|
// All of the different builtin modules can be included by including this one
|
|
|
|
// import
|
|
|
|
|
2024-02-11 20:09:00 -08:00
|
|
|
#include <err.h>
|
2024-02-04 15:04:41 -08:00
|
|
|
#include <gc.h>
|
|
|
|
#include <gc/cord.h>
|
2024-02-22 10:09:46 -08:00
|
|
|
#include <math.h>
|
2024-02-13 10:32:08 -08:00
|
|
|
#include <signal.h>
|
2024-02-04 15:04:41 -08:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
2024-02-04 18:13:50 -08:00
|
|
|
#include <stdlib.h>
|
2024-02-04 15:04:41 -08:00
|
|
|
#include <string.h>
|
2024-02-11 11:02:00 -08:00
|
|
|
#include <unistd.h>
|
2024-02-04 15:04:41 -08:00
|
|
|
|
2024-03-09 21:03:21 -08:00
|
|
|
#include "array.h"
|
|
|
|
#include "bool.h"
|
|
|
|
#include "datatypes.h"
|
|
|
|
#include "functions.h"
|
|
|
|
#include "halfsiphash.h"
|
|
|
|
#include "integers.h"
|
|
|
|
#include "macros.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "nums.h"
|
|
|
|
#include "pointer.h"
|
|
|
|
#include "table.h"
|
|
|
|
#include "text.h"
|
|
|
|
#include "types.h"
|
2024-02-04 18:13:50 -08:00
|
|
|
|
2024-02-10 12:23:06 -08:00
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|