Small fixes making LLVM happy, only added for compilation check.
This commit is contained in:
parent
7b821afac0
commit
3c828e13cf
|
@ -49,8 +49,13 @@ extern "C" {
|
|||
#ifndef bool
|
||||
typedef enum { FALSE, TRUE } bool;
|
||||
#endif
|
||||
|
||||
#define BOOL bool;
|
||||
#endif
|
||||
|
||||
/* ALGUNOS TIPOS DE DATOS */
|
||||
#define byte unsigned char
|
||||
|
||||
/* VARINDEX */
|
||||
/*! \defgroup varindex Acceso a variables indexadas */
|
||||
/*! @{ */
|
||||
|
@ -81,7 +86,7 @@ typedef struct {
|
|||
|
||||
/* Funciones de exportación de datos */
|
||||
typedef int (TYPEOF_EDIV_Export)(char* cadena, int nparam, void* hfuncion);
|
||||
typedef int (TYPEOF_EDIV_Export_Const)(char* cadena, int valor);
|
||||
typedef int (TYPEOF_EDIV_Export_Const)(byte* cadena, int valor);
|
||||
typedef int (TYPEOF_EDIV_Export_Global)(char* cadena, int valor);
|
||||
typedef int (TYPEOF_EDIV_Export_Global_Tab)(char* cadena, int numregs);
|
||||
typedef int (TYPEOF_EDIV_Export_Global_Struct)(char* cadena, int numregs);
|
||||
|
|
Loading…
Reference in a new issue