Remove dllexport from ds, update win32 makefile

cvs
Mackenzie Straight 2005-02-18 01:11:20 +00:00
parent de7978b6b5
commit 720ed0511f
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ OBJS = $(WIN32_OBJS) native\arithmetic.o native\array.o native\bignum.o \
native\word.o native\compiler.o \
native\ffi.o native\boolean.o \
native\debug.o \
native\hashtable.o
native\hashtable.o native\walk.o
default:
@echo "Run 'make' with one of the following parameters:"

View File

@ -20,7 +20,7 @@ CELL ds_bot;
/* raw pointer to datastack top */
#ifdef FACTOR_X86
register DLLEXPORT CELL ds asm("esi");
register CELL ds asm("esi");
#else
CELL ds;
#endif