Fix a compiler warning in initStringInfo().
[pgsql.git] / src / tools / pg_bsd_indent / tests / declarations.0
blob84194949894544510c3a3880f2c00fe7b1426078
1 /* $FreeBSD$ */
2 /* See r303570 */
4 typedef void    (*voidptr) (int *);
6 static const struct
8         double          x;
9         double          y, z;
10 } n[m + 1] =
12         {
13                 .0,
14                 .9,
15                 5
16         }
19 typedef struct Complex
21         double          x;
22         double          y;
23 }       Complex;
25 void 
26 t1 (char *a, int b,
27         void (*fn)(void))
30 void t2 (char *x, int y)
32         int a,
33         b,
34         c;
35         int
36         *d,
37         *e,
38         *f;
39         int (*g)(),
40         (*h)(),
41         (*i)();
42         int j,
43         k,
44         l;
45         int m
46         ,n
47         ,o
48         ;
49         int             chars[ /* push the comma beyond column 74 .... */ ], x;
52 const int       int_minimum_size =
53 MAXALIGN(offsetof(int, test)) + MAXIMUM_ALIGNOF;
55 int *int_create(void)
60 static
61 _attribute_printf(1, 2)
62 void
63 print_error(const char *fmt,...)
68 static LIST_HEAD(, alq) ald_active;
69 static int ald_shutingdown = 0;
70 struct thread *ald_thread;
72 static int
73 do_execve(
74 struct thread *td,
75 struct image_args *args,
76 struct mac *mac_p)