mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-31 02:58:19 +00:00
Made x32 copy
This commit is contained in:
parent
50d28b12d4
commit
f51d063e52
8 changed files with 3162 additions and 0 deletions
21
runtime32/runtime.h
Normal file
21
runtime32/runtime.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue