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
|
#ifndef bool
|
||||||
typedef enum { FALSE, TRUE } bool;
|
typedef enum { FALSE, TRUE } bool;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define BOOL bool;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* ALGUNOS TIPOS DE DATOS */
|
||||||
|
#define byte unsigned char
|
||||||
|
|
||||||
/* VARINDEX */
|
/* VARINDEX */
|
||||||
/*! \defgroup varindex Acceso a variables indexadas */
|
/*! \defgroup varindex Acceso a variables indexadas */
|
||||||
/*! @{ */
|
/*! @{ */
|
||||||
|
@ -81,7 +86,7 @@ typedef struct {
|
||||||
|
|
||||||
/* Funciones de exportación de datos */
|
/* Funciones de exportación de datos */
|
||||||
typedef int (TYPEOF_EDIV_Export)(char* cadena, int nparam, void* hfuncion);
|
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)(char* cadena, int valor);
|
||||||
typedef int (TYPEOF_EDIV_Export_Global_Tab)(char* cadena, int numregs);
|
typedef int (TYPEOF_EDIV_Export_Global_Tab)(char* cadena, int numregs);
|
||||||
typedef int (TYPEOF_EDIV_Export_Global_Struct)(char* cadena, int numregs);
|
typedef int (TYPEOF_EDIV_Export_Global_Struct)(char* cadena, int numregs);
|
||||||
|
|
Loading…
Reference in a new issue