libyywrap.c revision 250869
1109320Ssam/* libyywrap - flex run-time support library "yywrap" function */
2109320Ssam
3116953Ssam/*  This file is part of flex. */
4109320Ssam
5109320Ssam/*  Redistribution and use in source and binary forms, with or without */
6178354Ssam/*  modification, are permitted provided that the following conditions */
7138573Ssam/*  are met: */
8178354Ssam
9178354Ssam/*  1. Redistributions of source code must retain the above copyright */
10178354Ssam/*     notice, this list of conditions and the following disclaimer. */
11178354Ssam/*  2. Redistributions in binary form must reproduce the above copyright */
12178354Ssam/*     notice, this list of conditions and the following disclaimer in the */
13178354Ssam/*     documentation and/or other materials provided with the distribution. */
14109320Ssam
15151350Syar/*  Neither the name of the University nor the names of its contributors */
16178354Ssam/*  may be used to endorse or promote products derived from this software */
17182668Simp/*  without specific prior written permission. */
18182668Simp
19162659Sru/*  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
20109320Ssam/*  IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
21182668Simp/*  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
22109320Ssam/*  PURPOSE. */
23128091Skan
24182668Simpint     yywrap (void)
25151350Syar{
26128091Skan	return 1;
27109320Ssam}
28