]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/indent/tests/declarations.0.stdout
Remove spurious newline
[FreeBSD/FreeBSD.git] / usr.bin / indent / tests / declarations.0.stdout
1 /* $FreeBSD$ */
2 /* See r303570 */
3
4 typedef void (*voidptr) (int *);
5
6 static const struct {
7         double          x;
8         double          y, z;
9 }               n[m + 1] =
10 {
11         {
12                 .0,
13                 .9,
14                 5
15         }
16 };
17
18 typedef struct Complex {
19         double          x;
20         double          y;
21 }               Complex;
22
23 void
24 t1(char *a, int b,
25    void (*fn) (void))
26 {
27 }
28
29 void
30 t2(char *x, int y)
31 {
32         int             a, b, c;
33         int
34                        *d, *e, *f;
35         int             (*g) (), (*h) (), (*i) ();
36         int             j, k, l;
37         int             m
38                        ,n
39                        ,o
40                        ;
41         int             chars[ /* push the comma beyond column 74 .... */ ],
42                         x;
43 }
44
45 const int       int_minimum_size =
46 MAXALIGN(offsetof(int, test)) + MAXIMUM_ALIGNOF;
47
48 int            *
49 int_create(void)
50 {
51
52 }
53
54 static
55 _attribute_printf(1, 2)
56 void
57 print_error(const char *fmt,...)
58 {
59
60 }
61
62 static LIST_HEAD(, alq) ald_active;
63 static int      ald_shutingdown = 0;
64 struct thread  *ald_thread;
65
66 static int
67 do_execve(td, args, mac_p)
68         struct thread  *td;
69         struct image_args *args;
70         struct mac     *mac_p;
71 {
72
73 }