]> Creatis software - clitk.git/blob - cmake/gengetopt/yywrap.c
Added FindGengetopt.cmake which compiles gengetopt if not installed.
[clitk.git] / cmake / gengetopt / yywrap.c
1 /*
2 This file is licensed to you under the license specified in the included file
3 `LICENSE'. Look there for further details.
4 */
5
6
7 /*
8   This function is called when found EOF.
9  */
10 #include <stdio.h>
11
12 int
13 yywrap ()
14 {
15   /* fprintf (stderr, "yywrap() called.\n"); */
16   return 1;
17 }
18