lama_byterun/runtime/runtime.h

22 lines
388 B
C
Raw Normal View History

2023-05-31 11:01:11 +02:00
#ifndef __LAMA_RUNTIME__
#define __LAMA_RUNTIME__
2021-09-28 03:02:05 +03:00
#include "runtime_common.h"
2023-05-31 11:01:11 +02:00
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <regex.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <time.h>
2021-09-28 03:02:05 +03:00
#define WORD_SIZE (CHAR_BIT * sizeof(ptrt))
2021-09-28 03:02:05 +03:00
2024-06-30 19:22:14 +02:00
_Noreturn void failure (char *s, ...);
2021-09-28 03:02:05 +03:00
2023-05-31 11:01:11 +02:00
#endif