blob: 2f62598a3cdd733984588442a0ef73373ea68fda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* See LICENSE file for copyright and license details. */
#include <stdlib.h>
int test1(int, char **);
int
main(int argc, char** argv)
{
test1(argc, argv);
return EXIT_SUCCESS;
}
|