1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

os: make SignalHandler public (#18115)

This commit is contained in:
Jacques Supcik 2023-05-06 13:59:06 +02:00 committed by GitHub
parent 787d774523
commit a82fc5bea0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,4 +40,4 @@ pub enum Signal {
sys = 31
}
type SignalHandler = fn (Signal)
pub type SignalHandler = fn (Signal)