]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bc/tests/fuzzing/bc_inputs1/functions.txt
mlx4en(4): Fix wrong mbuf cluster size in mlx4_en_debugnet_init()
[FreeBSD/FreeBSD.git] / contrib / bc / tests / fuzzing / bc_inputs1 / functions.txt
1 define x(x, y) {
2         return x - y + 5
3 }
4
5 define y(y, x) {
6         return x(y, x) + x(x, y)
7 }
8
9 y(1, 4)
10 y(2, 4)
11 y(3, 4)
12 y(4, 3)
13 y(3, 2)