mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
12 lines
161 B
Python
12 lines
161 B
Python
# Stubs for fcntl
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
import typing
|
|
|
|
FD_CLOEXEC = 0
|
|
F_GETFD = 0
|
|
F_SETFD = 0
|
|
|
|
def fcntl(fd: int, op: int, arg: int = ...) -> int: ...
|