[BACK]Return to libyywrap.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / lex

Annotation of src/usr.bin/lex/libyywrap.c, Revision 1.1

1.1     ! deraadt     1: /* libyywrap - flex run-time support library "yywrap" function */
        !             2:
        !             3: /* $Header: /a/cvsroot/src/usr.bin/lex/libyywrap.c,v 1.3 1995/06/05 19:44:55 pk Exp $ */
        !             4:
        !             5: #include <sys/cdefs.h>
        !             6:
        !             7: int yywrap __P((void));
        !             8:
        !             9: int yywrap()
        !            10:        {
        !            11:        return 1;
        !            12:        }