mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
I am bad, and that is good - Ralph. Fix missing include
This commit is contained in:
parent
b91a9fb0c0
commit
c7daf2d06c
2 changed files with 5 additions and 2 deletions
|
@ -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 */
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
%parse-param {const char *what}
|
||||
%code requires {
|
||||
#include "theme.h"
|
||||
#include "xrmoptions.h"
|
||||
|
||||
typedef struct YYLTYPE {
|
||||
int first_line;
|
||||
|
|
Loading…
Reference in a new issue