diff options
author | Raimo Niskanen <[email protected]> | 2012-03-19 10:55:31 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2012-03-21 11:00:49 +0100 |
commit | b80ee2bbf4c2c28ceeb3e561fddc9020c686071f (patch) | |
tree | a78f54a1336018a624d04dc2ea62fabedbe99f93 /lib/stdlib | |
parent | 83d38d0dda488ecb7090f3070a5b2569be5a555e (diff) | |
download | otp-b80ee2bbf4c2c28ceeb3e561fddc9020c686071f.tar.gz otp-b80ee2bbf4c2c28ceeb3e561fddc9020c686071f.tar.bz2 otp-b80ee2bbf4c2c28ceeb3e561fddc9020c686071f.zip |
erts: Implement erlang:halt/2
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/src/erl_internal.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/stdlib/src/erl_internal.erl b/lib/stdlib/src/erl_internal.erl index cd3b531d10..3063881890 100644 --- a/lib/stdlib/src/erl_internal.erl +++ b/lib/stdlib/src/erl_internal.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1998-2011. All Rights Reserved. +%% Copyright Ericsson AB 1998-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -287,6 +287,7 @@ bif(group_leader, 0) -> true; bif(group_leader, 2) -> true; bif(halt, 0) -> true; bif(halt, 1) -> true; +bif(halt, 2) -> true; bif(hd, 1) -> true; bif(integer_to_list, 1) -> true; bif(integer_to_list, 2) -> true; |