lama_byterun/runtime/runtime.h
ProgramSnail 34d80da611 Revert "[TMP]"
This reverts commit 401805c229.
2025-01-08 22:25:01 +03:00

21 lines
388 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))
_Noreturn void failure (char *s, ...);
#endif