util.signal: Fix name conflict in Teal interface declaration

This commit is contained in:
Kim Alvefur 2022-08-10 15:12:00 +02:00
parent d7b7e4afb5
commit 48ee5e3cbd

View file

@ -1,5 +1,5 @@
local record lib
enum signal
enum Signal
"SIGABRT"
"SIGALRM"
"SIGBUS"
@ -33,9 +33,9 @@ local record lib
"SIGXCPU"
"SIGXFSZ"
end
signal : function (integer | signal, function, boolean) : boolean
raise : function (integer | signal)
kill : function (integer, integer | signal)
signal : function (integer | Signal, function, boolean) : boolean
raise : function (integer | Signal)
kill : function (integer, integer | Signal)
-- enum : integer
end
return lib