diff options
author | Sverker Eriksson <[email protected]> | 2013-05-22 11:53:28 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-05-22 11:53:28 +0200 |
commit | 01eb20066918e107811d01f43b97e3925f894dbd (patch) | |
tree | 665f0890c28464022040ad6ce9bb045f544fef49 /erts/emulator/sys/common/erl_mseg.h | |
parent | 4bd041e74b5e3e1356a10bb0188aab37521d717a (diff) | |
parent | c746dd9c73f19588712b4d35e3bab96036348d23 (diff) | |
download | otp-01eb20066918e107811d01f43b97e3925f894dbd.tar.gz otp-01eb20066918e107811d01f43b97e3925f894dbd.tar.bz2 otp-01eb20066918e107811d01f43b97e3925f894dbd.zip |
Merge branch 'sverk/win64-fixes' into maint
* sverk/win64-fixes:
erts: Change some more 'long' to pointer sized int (ErlDrvUInt)
erts: Fix crash in nif_SUITE for win64
erts: Fix assert in isdigit for negative characters
Diffstat (limited to 'erts/emulator/sys/common/erl_mseg.h')
-rw-r--r-- | erts/emulator/sys/common/erl_mseg.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/erts/emulator/sys/common/erl_mseg.h b/erts/emulator/sys/common/erl_mseg.h index 3cab9e18da..a4f250ceab 100644 --- a/erts/emulator/sys/common/erl_mseg.h +++ b/erts/emulator/sys/common/erl_mseg.h @@ -109,9 +109,6 @@ Eterm erts_mseg_info(int, int *, void*, int, Uint **, Uint *); #endif /* #if HAVE_ERTS_MSEG */ -unsigned long erts_mseg_test(unsigned long, - unsigned long, - unsigned long, - unsigned long); +UWord erts_mseg_test(UWord, UWord, UWord, UWord); #endif /* #ifndef ERL_MSEG_H_ */ |