mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
21 lines
378 B
C
21 lines
378 B
C
#ifndef __LAMA_RUNTIME__
|
|
#define __LAMA_RUNTIME__
|
|
|
|
#include "runtime_common.h"
|
|
#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>
|
|
|
|
#define WORD_SIZE (CHAR_BIT * sizeof(ptrt))
|
|
|
|
void failure (char *s, ...);
|
|
|
|
#endif
|