File: syscalls_linux.go

package info (click to toggle)
golang-github-eiannone-keyboard 0.0~git20220611.0d22619-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 120 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 123 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
package keyboard

import (
	"golang.org/x/sys/unix"
)

const (
	ioctl_GETATTR = unix.TCGETS
	ioctl_SETATTR = unix.TCSETS
)