aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src/erl_compile.erl
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2016-05-20 15:58:04 +0200
committerSverker Eriksson <[email protected]>2016-05-25 14:29:29 +0200
commitf9cb80861f169743a96099a06d68149a91f18dfa (patch)
tree6ace6c3a87c45e97614183e144700f236b17cc72 /lib/stdlib/src/erl_compile.erl
parentab7bcce2778d04daec2276e568deba954c6f9b57 (diff)
downloadotp-f9cb80861f169743a96099a06d68149a91f18dfa.tar.gz
otp-f9cb80861f169743a96099a06d68149a91f18dfa.tar.bz2
otp-f9cb80861f169743a96099a06d68149a91f18dfa.zip
erts: Implement halt/0 and halt/1 in Erlang
just to make things simpler.
Diffstat (limited to 'lib/stdlib/src/erl_compile.erl')
-rw-r--r--lib/stdlib/src/erl_compile.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stdlib/src/erl_compile.erl b/lib/stdlib/src/erl_compile.erl
index ef54076ee3..a6ae398d03 100644
--- a/lib/stdlib/src/erl_compile.erl
+++ b/lib/stdlib/src/erl_compile.erl
@@ -60,6 +60,7 @@ compile_cmdline() ->
_ -> my_halt(2)
end.
+-spec my_halt(_) -> no_return().
my_halt(Reason) ->
erlang:halt(Reason).