2021-06-27 09:32:03 +03:00
|
|
|
#pragma once
|
|
|
|
|
2022-04-27 15:59:32 +03:00
|
|
|
#include <pthread.h>
|
2020-10-11 17:05:00 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2022-04-27 15:59:32 +03:00
|
|
|
#include "_datatypes.h"
|
2021-06-10 13:19:09 +03:00
|
|
|
#include "buffer.h"
|
2020-10-11 17:05:00 +03:00
|
|
|
#include "casts.h"
|
2022-04-27 15:59:32 +03:00
|
|
|
#include "clock.h"
|
2020-10-11 17:05:00 +03:00
|
|
|
#include "conCaseHelper.h"
|
2022-04-27 15:59:32 +03:00
|
|
|
#include "mathFunctions.h"
|
|
|
|
#include "memoryManagement.h"
|
2020-10-11 17:05:00 +03:00
|
|
|
#include "prim.h"
|
2022-04-27 15:59:32 +03:00
|
|
|
#include "runtime.h"
|
|
|
|
#include "stringOps.h"
|
|
|
|
#include "threads.h"
|
|
|
|
|
|
|
|
extern IORef_Storage *global_IORef_Storage;
|