mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-03 03:41:49 +00:00
fb3ef04d20
git-subtree-dir: contrib/unifdef git-subtree-mainline:3b7ffacdee
git-subtree-split:0da4488583
40 lines
547 B
Text
40 lines
547 B
Text
/* Copyright 2004 Bob Proulx <bob@proulx.com>
|
|
Distributed under the two-clause BSD licence;
|
|
see the COPYING file for details. */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int foo1() { return 0; }
|
|
|
|
int foo2() { return 0; }
|
|
|
|
int foo3() { return 0; }
|
|
|
|
int foo4() { return 0; }
|
|
|
|
int foo5() { return 0; }
|
|
|
|
int foo6() { return 0; }
|
|
|
|
int foo7() { return 0; }
|
|
|
|
int foo8() { return 0; }
|
|
|
|
int foo9() { return 0; }
|
|
|
|
int foo10() { return 0; }
|
|
|
|
int main()
|
|
{
|
|
foo1();
|
|
foo2();
|
|
foo3();
|
|
foo4();
|
|
foo5();
|
|
foo6();
|
|
foo7();
|
|
foo8();
|
|
foo9();
|
|
foo10();
|
|
}
|