選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
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