Export the babeltrace API in babeltrace.h
[babeltrace.git] / formats / ctf / metadata / ctf-lexer.l
index ff4f8a51ba9c17ed4ff65988e4159733d01d43ce..7a0e73fe1abb7c8e73690fe64f645c4242f25227 100644 (file)
@@ -18,7 +18,7 @@
  */
 
 #include <stdio.h>
-#include <babeltrace/babeltrace.h>
+#include <babeltrace/babeltrace-internal.h>
 #include "ctf-scanner.h"
 #include "ctf-parser.h"
 #include "ctf-ast.h"
@@ -93,6 +93,7 @@ L\"                           BEGIN(string_lit); return STRING_LITERAL_START;
 "."                            return DOT;
 =                              return EQUAL;
 ","                            return COMMA;
+align                          setstring(yyextra, yylval, yytext); return TOK_ALIGN;
 const                          setstring(yyextra, yylval, yytext); return CONST;
 char                           setstring(yyextra, yylval, yytext); return CHAR;
 double                         setstring(yyextra, yylval, yytext); return DOUBLE;
This page took 0.023162 seconds and 4 git commands to generate.