yywrap.c 85 B

123456789
  1. #include <u.h>
  2. #include <libc.h>
  3. #include <stdio.h>
  4. int
  5. yywrap(void)
  6. {
  7. return 1;
  8. }