2023-05-31 11:01:11 +02:00
|
|
|
#ifndef __LAMA_RUNTIME__
|
|
|
|
|
#define __LAMA_RUNTIME__
|
2021-09-28 03:02:05 +03:00
|
|
|
|
2024-02-01 20:40:44 +01:00
|
|
|
#include "runtime_common.h"
|
2024-12-15 16:34:55 +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
|
|
|
|
2024-02-01 20:40:44 +01:00
|
|
|
#define WORD_SIZE (CHAR_BIT * sizeof(ptrt))
|
2021-09-28 03:02:05 +03:00
|
|
|
|
2024-12-15 16:34:55 +03:00
|
|
|
void failure (const char *s, ...);
|
2021-09-28 03:02:05 +03:00
|
|
|
|
2023-05-31 11:01:11 +02:00
|
|
|
#endif
|