mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
12 lines
159 B
Python
12 lines
159 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 = 0) -> int: ...
|