repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
build
/
tests
/
ex
/
ex.c
blob
3c02756ef912d9be0e4bd649401e96fbe59dc1fc
1
// SPDX-License-Identifier: GPL-2.0
2
3
int
a
(
void
);
4
int
b
(
void
);
5
int
c
(
void
);
6
int
d
(
void
);
7
int
e
(
void
);
8
int
f
(
void
);
9
int
inc
(
void
);
10
11
int
main
(
void
)
12
{
13
a
();
14
b
();
15
c
();
16
d
();
17
e
();
18
f
();
19
inc
();
20
21
return
0
;
22
}