parser/c_compiler/include/prototypes.h
changeset 64 993b97c4ad2d
parent 37 0fbbe329c3a2
--- a/parser/c_compiler/include/prototypes.h
+++ b/parser/c_compiler/include/prototypes.h
@@ -1,14 +1,13 @@
 #ifndef PROTOTYPES_H
 #define PROTOTYPES_H
 
-int yyparse();
-int yylex();
-void yyerror(char*);
-int yywrap();
-int count();
-int check_type();
-void comment();
+int yyparse ();
+int yylex ();
+void yyerror (char *);
+int yywrap ();
+int count ();
+int check_type ();
+void comment ();
 
 #define YYSTYPE char*
 #endif
-