summaryrefslogtreecommitdiff
path: root/tests/compile/posix_pxds.pyx
blob: e5862b6665100194837ef167a754cb2d936f9448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# tag: posix
# mode: compile

# This file is generated by `Tools/gen_tests_for_posix_pxds.py`.

cimport posix

cimport posix.dlfcn
from posix cimport dlfcn
from posix.dlfcn cimport *

cimport posix.fcntl
from posix cimport fcntl
from posix.fcntl cimport *

cimport posix.ioctl
from posix cimport ioctl
from posix.ioctl cimport *

cimport posix.mman
from posix cimport mman
from posix.mman cimport *

cimport posix.resource
from posix cimport resource
from posix.resource cimport *

cimport posix.select
from posix cimport select
from posix.select cimport *

cimport posix.signal
from posix cimport signal
from posix.signal cimport *

cimport posix.stat
from posix cimport stat
from posix.stat cimport *

cimport posix.stdio
from posix cimport stdio
from posix.stdio cimport *

cimport posix.stdlib
from posix cimport stdlib
from posix.stdlib cimport *

cimport posix.strings
from posix cimport strings
from posix.strings cimport *

cimport posix.time
from posix cimport time
from posix.time cimport *

cimport posix.types
from posix cimport types
from posix.types cimport *

cimport posix.uio
from posix cimport uio
from posix.uio cimport *

cimport posix.unistd
from posix cimport unistd
from posix.unistd cimport *

cimport posix.wait
from posix cimport wait
from posix.wait cimport *