mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
22 lines
384 B
C
22 lines
384 B
C
|
|
# ifndef __LAMA_RUNTIME__
|
||
|
|
# define __LAMA_RUNTIME__
|
||
|
|
|
||
|
|
# include <stdio.h>
|
||
|
|
# include <stdio.h>
|
||
|
|
# include <string.h>
|
||
|
|
# include <stdarg.h>
|
||
|
|
# include <stdlib.h>
|
||
|
|
# include <sys/mman.h>
|
||
|
|
# include <assert.h>
|
||
|
|
# include <errno.h>
|
||
|
|
# include <regex.h>
|
||
|
|
# include <time.h>
|
||
|
|
# include <limits.h>
|
||
|
|
# include <ctype.h>
|
||
|
|
|
||
|
|
# define WORD_SIZE (CHAR_BIT * sizeof(int))
|
||
|
|
|
||
|
|
void failure (char *s, ...);
|
||
|
|
|
||
|
|
# endif
|