projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bd2105
)
Changes to allow Win32 microcode to be compiled by the Watcom C
author
Chris Hanson
<org/chris-hanson/cph>
Tue, 24 Oct 1995 06:21:44 +0000
(06:21 +0000)
committer
Chris Hanson
<org/chris-hanson/cph>
Tue, 24 Oct 1995 06:21:44 +0000
(06:21 +0000)
compiler.
v7/src/microcode/cmpintmd/i386.h
patch
|
blob
|
history
diff --git
a/v7/src/microcode/cmpintmd/i386.h
b/v7/src/microcode/cmpintmd/i386.h
index 072445835fb71cdbba36d028754fff5f41f2c5e9..d65487833ffad4db7fbf9f9a5c898b643a68ee5f 100644
(file)
--- a/
v7/src/microcode/cmpintmd/i386.h
+++ b/
v7/src/microcode/cmpintmd/i386.h
@@
-1,6
+1,6
@@
/* -*-C-*-
-$Id: i386.h,v 1.2
8 1995/10/15 00:40:18
cph Exp $
+$Id: i386.h,v 1.2
9 1995/10/24 06:21:44
cph Exp $
Copyright (c) 1992-95 Massachusetts Institute of Technology
@@
-54,8
+54,12
@@
MIT in each case. */
#if defined(_OS2) && (defined(__IBMC__) || defined(__WATCOMC__))
#define ASM_ENTRY_POINT(name) (_System name)
#else
+#if defined(WINNT) && defined(__WATCOMC__)
+#define ASM_ENTRY_POINT(name) (__cdecl name)
+#else
#define ASM_ENTRY_POINT(name) name
#endif
+#endif
/*