repo.or.cz
/
unifdef.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Travis CI is no more
[unifdef.git]
/
tests
/
if4-a.expout
blob
55dfe32d1272aa859abbeba024cb2221fc56f6da
1
/* Copyright 2004 Bob Proulx <bob@proulx.com>
2
Distributed under the two-clause BSD licence;
3
see the COPYING file for details. */
4
5
#include <stdio.h>
6
#include <stdlib.h>
7
8
int foo1() { return 0; }
9
10
int foo2() { return 0; }
11
12
int foo3() { return 0; }
13
14
int foo4() { return 0; }
15
16
int main()
17
{
18
foo1();
19
foo2();
20
foo3();
21
foo4();
22
}