aboutsummaryrefslogtreecommitdiff
path: root/scripts/maint/practracker/testdata/a.c
blob: 1939773f57d3032aec6b59f2a393f8850ef1150c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include "one.h"
#include "two.h"
#incldue "three.h"

# include "permitted.h"

int
i_am_a_function(void)
{
  call();
  call();
  /* comment

     another */

  return 3;
}

#	include  "five.h"

long
another_function(long x,
                 long y)
{
  int abcd;

  abcd = x+y;
  abcd *= abcd;

  /* comment here */

  return abcd +
    abcd +
    abcd;
}

/* And a comment to grow! */