home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / awk / awk320sr.zip / YYWRAP.C < prev   
Text File  |  1991-04-25  |  173b  |  12 lines

  1. /*
  2.  *  yywrap.c -- default lex termination routine
  3.  *
  4.  * Copyright (C) 1988, 1989, 1990, 1991 by Rob Duff
  5.  * All rights reserved
  6.  */
  7. yywrap()
  8. {
  9.     return(1);
  10. }
  11.  
  12.