]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/indent/tests/struct.0.stdout
Merge openmp trunk r366426, resolve conflicts, and add FREEBSD-Xlist.
[FreeBSD/FreeBSD.git] / usr.bin / indent / tests / struct.0.stdout
1 /* $FreeBSD$ */
2
3 int             f(struct x *a);
4
5 /* See r303485 */
6 void
7 t(void)
8 {
9         static const struct {
10                 int             a;
11                 int             b;
12         }               c[] = {
13                 {D, E},
14                 {F, G}
15         };
16 }
17
18 void
19 u(struct x a)
20 {
21         int             b;
22         struct y        c = (struct y *)&a;
23 }