libyywrap.c revision 250875
180708Sjake/* libyywrap - flex run-time support library "yywrap" function */
280708Sjake
382902Sjake/*  This file is part of flex. */
482902Sjake
580708Sjake/*  Redistribution and use in source and binary forms, with or without */
680708Sjake/*  modification, are permitted provided that the following conditions */
782902Sjake/*  are met: */
882902Sjake
982902Sjake/*  1. Redistributions of source code must retain the above copyright */
1080708Sjake/*     notice, this list of conditions and the following disclaimer. */
1180708Sjake/*  2. Redistributions in binary form must reproduce the above copyright */
1280708Sjake/*     notice, this list of conditions and the following disclaimer in the */
1380708Sjake/*     documentation and/or other materials provided with the distribution. */
1480708Sjake
1580708Sjake/*  Neither the name of the University nor the names of its contributors */
1680708Sjake/*  may be used to endorse or promote products derived from this software */
1780708Sjake/*  without specific prior written permission. */
1882902Sjake
1982902Sjake/*  THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
2082902Sjake/*  IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
2182902Sjake/*  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
2282902Sjake/*  PURPOSE. */
2382902Sjake
2482902Sjakeint     yywrap (void);
2580708Sjakeint     yywrap (void)
2682902Sjake{
2780708Sjake	return 1;
2880708Sjake}
2982902Sjake