]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/fuzzing/bc_inputs3/13.txt
Set file mode during zfs_write
[FreeBSD/FreeBSD.git] / tests / fuzzing / bc_inputs3 / 13.txt
1 #0
2
3 define z(a[]) {for (i = 0; i < l; ++i) {
4                 a[i]
5         }
6 }
7
8 define x(a[]) {
9
10         #00000000000000000000000000000000000
11         auto a
12
13         for (a = 0; a < l; ++a) {
14                 a[a] = -a
15         }
16
17         z(a[])
18 }
19
20 define g(x[], y[]) {
21         return x[0] - y[0]
22 }
23
24 define h(u000 x[]) {
25         return g(x[], y[])
26 }
27
28 define m(*x[], *y[]) {
29         return x[0] / y[0]
30 }
31
32 define n(*y[], *x[]) {
33         return m(x[], y[])
34 }
35
36 for (i = 0; i < 101; ++i) {
37         a[i] = i
38 }
39
40 a[104] = 200
41
42 l = length(a[])
43
44 for (i = 0; i <= l; ++i) {
45         a[i]
46 }
47
48 z(a[])
49 x(a[])
50 z(a[])
51 l
52
53 x[0] = 5
54 y[0] = 4
55
56 h(x[], y[])