Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

23 lines
365B

  1. #ifndef VSLC_H
  2. #define VSLC_H
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <stdint.h>
  7. #include <stdbool.h>
  8. #include <stdarg.h>
  9. #include "tlhash.h"
  10. #include "nodetypes.h"
  11. #include "ir.h"
  12. #include "y.tab.h"
  13. int yyerror ( const char *error );
  14. extern int yylineno;
  15. extern int yylex ( void );
  16. extern char yytext[];
  17. extern node_t *root;
  18. #endif