You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/src/ravi_def.h

23 lines
367 B

/*
** LuaJIT common internal definitions.
** Copyright (C) 2005-2017 Mike Pall. See Copyright Notice in luajit.h
*/
#ifndef RAVI_DEF_H
#define RAVI_DEF_H
#include "lua.h"
#include <stdint.h>
/* Needed everywhere. */
#include <string.h>
#include <stdlib.h>
/* Various macros. */
#ifndef UNUSED
#define UNUSED(x) ((void)(x)) /* to avoid warnings */
#endif
#endif