1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-09-30 11:33:14 +03:00

fpd.l: make start_token "static"

This commit is contained in:
Werner Almesberger 2012-04-26 02:55:45 -03:00
parent 43928dbbf3
commit 6547384793

7
fpd.l
View File

@ -2,8 +2,8 @@
/* /*
* fpd.l - FootPrint Definition language * fpd.l - FootPrint Definition language
* *
* Written 2009, 2010 by Werner Almesberger * Written 2009, 2010, 2012 by Werner Almesberger
* Copyright 2009, 2010 by Werner Almesberger * Copyright 2009, 2010, 2012 by Werner Almesberger
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -24,8 +24,7 @@
#include "y.tab.h" #include "y.tab.h"
int start_token = START_FPD; static int start_token = START_FPD;
static int disable_keywords = 0; static int disable_keywords = 0;
static int is_table = 0; static int is_table = 0;