I am bad, and that is good - Ralph. Fix missing include

This commit is contained in:
Dave Davenport 2017-03-28 09:02:39 +02:00
parent b91a9fb0c0
commit c7daf2d06c
2 changed files with 5 additions and 2 deletions

View File

@ -1,4 +1,6 @@
%option noyywrap nounput never-interactive
%option noyywrap
%option nounput
%option never-interactive
%option bison-locations
%{
@ -35,7 +37,7 @@ typedef struct _ParseObject {
char *filename;
/** Length of string */
size_t str_len;
ssize_t str_len;
/** String */
const char *input_str;
/** Position in file */

View File

@ -7,6 +7,7 @@
%parse-param {const char *what}
%code requires {
#include "theme.h"
#include "xrmoptions.h"
typedef struct YYLTYPE {
int first_line;