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