compilation fix

This commit is contained in:
ProgramSnail 2024-12-15 16:34:55 +03:00
parent b85b694d78
commit 7784696b65
2 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,7 @@
#define __LAMA_RUNTIME__
#include "runtime_common.h"
#include <assert.h>
#include <ctype.h>
#include <errno.h>
@ -16,6 +17,6 @@
#define WORD_SIZE (CHAR_BIT * sizeof(ptrt))
_Noreturn void failure (char *s, ...);
void failure (const char *s, ...);
#endif