lama_byterun/runtime/runtime.h

21 lines
349 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
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
2023-05-31 11:01:11 +02:00
#define WORD_SIZE (CHAR_BIT * sizeof(int))
2021-09-28 03:02:05 +03:00
void failure (char *s, ...);
2023-05-31 11:01:11 +02:00
#endif