1228072Sbapt/* libyywrap - flex run-time support library "yywrap" function */
2228072Sbapt
3228072Sbapt/*  This file is part of flex. */
4228072Sbapt
5228072Sbapt/*  Redistribution and use in source and binary forms, with or without */
6228072Sbapt/*  modification, are permitted provided that the following conditions */
7228072Sbapt/*  are met: */
8228072Sbapt
9228072Sbapt/*  1. Redistributions of source code must retain the above copyright */
10228072Sbapt/*     notice, this list of conditions and the following disclaimer. */
11228072Sbapt/*  2. Redistributions in binary form must reproduce the above copyright */
12228072Sbapt/*     notice, this list of conditions and the following disclaimer in the */
13228072Sbapt/*     documentation and/or other materials provided with the distribution. */
14228072Sbapt
15228072Sbapt/*  Neither the name of the University nor the names of its contributors */
16228072Sbapt/*  may be used to endorse or promote products derived from this software */
17228072Sbapt/*  without specific prior written permission. */
18228072Sbapt
19228072Sbapt/*  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
20228072Sbapt/*  IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
21228072Sbapt/*  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
22228072Sbapt/*  PURPOSE. */
23228072Sbapt
24250875Sjkimint     yywrap (void);
25228072Sbaptint     yywrap (void)
26228072Sbapt{
27228072Sbapt	return 1;
28228072Sbapt}
29