Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
obsidiansystems
GHC
Commits
d188050a
Commit
d188050a
authored
Jun 15, 2000
by
daan
Browse files
[project @ 2000-06-15 13:16:16 by daan]
Added definition of int64 to make it compilable with both gcc and VisualC++
parent
93c0c44f
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/includes/RtsAPI.h
View file @
d188050a
/* ----------------------------------------------------------------------------
* $Id: RtsAPI.h,v 1.1
3
2000/0
4/26 09:29:37 simonmar
Exp $
* $Id: RtsAPI.h,v 1.1
4
2000/0
6/15 13:16:16 daan
Exp $
*
* (c) The GHC Team, 1998-1999
*
...
...
@@ -10,6 +10,18 @@
#ifndef RTSAPI_H
#define RTSAPI_H
/* Make this compilable with Visual C++ */
#ifndef HAVE_INT64
#define HAVE_INT64
#ifdef _MSC_VER
typedef
__int64
int64
;
typedef
unsigned
__int64
nat64
;
#else
typedef
long
long
int64
;
typedef
unsigned
long
long
nat64
;
#endif
#endif
/*
* Running the scheduler
*/
...
...
@@ -40,12 +52,12 @@ HaskellObj rts_mkInt ( int i );
HaskellObj
rts_mkInt8
(
int
i
);
HaskellObj
rts_mkInt16
(
int
i
);
HaskellObj
rts_mkInt32
(
int
i
);
HaskellObj
rts_mkInt64
(
long
long
i
);
HaskellObj
rts_mkInt64
(
int64
i
);
HaskellObj
rts_mkWord
(
unsigned
int
w
);
HaskellObj
rts_mkWord8
(
unsigned
int
w
);
HaskellObj
rts_mkWord16
(
unsigned
int
w
);
HaskellObj
rts_mkWord32
(
unsigned
int
w
);
HaskellObj
rts_mkWord64
(
unsigned
long
long
w
);
HaskellObj
rts_mkWord64
(
nat64
w
);
HaskellObj
rts_mkFloat
(
float
f
);
HaskellObj
rts_mkDouble
(
double
f
);
HaskellObj
rts_mkStablePtr
(
StgStablePtr
s
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment