add missing dllexport
parent
790cfa2603
commit
fb53d7741c
|
@ -1,7 +1,7 @@
|
||||||
#include "factor.h"
|
#include "factor.h"
|
||||||
|
|
||||||
/* This function is called by the compiler. It returns an untagged fixnum. */
|
/* This function is called by the compiler. It returns an untagged fixnum. */
|
||||||
F_FIXNUM arithmetic_type(void)
|
CELL arithmetic_type(void)
|
||||||
{
|
{
|
||||||
CELL obj1 = dpeek(), obj2 = get(ds - CELLS);
|
CELL obj1 = dpeek(), obj2 = get(ds - CELLS);
|
||||||
CELL type1 = TAG(obj1), type2 = TAG(obj2);
|
CELL type1 = TAG(obj1), type2 = TAG(obj2);
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
F_FIXNUM arithmetic_type(void);
|
DLLEXPORT CELL arithmetic_type(void);
|
||||||
void primitive_arithmetic_type(void);
|
void primitive_arithmetic_type(void);
|
||||||
|
|
Loading…
Reference in New Issue