fatbase

portable OpenBSD tools
git clone git://git.2f30.org/fatbase
Log | Files | Refs

libyywrap.c (276B)


      1 /*	$OpenBSD: libyywrap.c,v 1.7 2012/12/05 23:20:25 deraadt Exp $	*/
      2 
      3 /* libyywrap - flex run-time support library "yywrap" function */
      4 
      5 /* $Header: /cvs/src/usr.bin/lex/libyywrap.c,v 1.7 2012/12/05 23:20:25 deraadt Exp $ */
      6 
      7 int yywrap(void);
      8 
      9 int
     10 yywrap(void)
     11 {
     12 	return 1;
     13 }