Skip to content

Commit

Permalink
Recognize signal.h header.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennwc committed Sep 4, 2022
1 parent 4ded86e commit 5598069
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions libs/signal.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package libs

const (
sysSignalH = "signal.h"
)

func init() {
RegisterLibrary(sysSignalH, func(c *Env) *Library {
return &Library{
// TODO
Header: `
`,
}
})
}

0 comments on commit 5598069

Please sign in to comment.