commit 15a3d8df7b57e667bd8e5226ab6dba05d0152af9
parent 2c2189b0c98e0519370449d1971d10297555a692
Author: Drew DeVault <sir@cmpwn.com>
Date: Mon, 11 Apr 2022 16:59:03 +0200
unix::signal: correct SIGINT name
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unix/signal/+linux.ha b/unix/signal/+linux.ha
@@ -188,7 +188,7 @@ export fn read(fd: io::file) (siginfo | errors::error) = {
// Hangup.
export def SIGHUP: signal = rt::SIGHUP;
// Terminal signalerrupt signal.
-export def SIGsignal: signal = rt::SIGINT;
+export def SIGINT: signal = rt::SIGINT;
// Terminal quit signal.
export def SIGQUIT: signal = rt::SIGQUIT;
// Illegal instruction.