add missing dllexport

cvs
Slava Pestov 2005-06-09 02:13:58 +00:00
parent 790cfa2603
commit fb53d7741c
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -1,2 +1,2 @@
F_FIXNUM arithmetic_type(void); DLLEXPORT CELL arithmetic_type(void);
void primitive_arithmetic_type(void); void primitive_arithmetic_type(void);