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