diff options
author | Sverker Eriksson <[email protected]> | 2013-05-06 20:52:15 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2013-05-06 21:34:56 +0200 |
commit | c746dd9c73f19588712b4d35e3bab96036348d23 (patch) | |
tree | 6410650c9c54c1a5ffe447d007e7aea0208eea77 /erts/emulator/sys/common/erl_mseg.h | |
parent | 65aa1982ce35fb7bf55537362ca6f419447062d1 (diff) | |
download | otp-c746dd9c73f19588712b4d35e3bab96036348d23.tar.gz otp-c746dd9c73f19588712b4d35e3bab96036348d23.tar.bz2 otp-c746dd9c73f19588712b4d35e3bab96036348d23.zip |
erts: Change some more 'long' to pointer sized int (ErlDrvUInt)
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_ */ |