1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-06-29 00:03:52 +03:00

b2/: moved declarations of diagnostic functions from util.h to lang.h

This commit is contained in:
Werner Almesberger 2012-04-28 22:12:33 -03:00
parent 433b03a59d
commit 8aa94edd2f
5 changed files with 6 additions and 4 deletions

View File

@ -13,6 +13,7 @@
#include <assert.h>
#include "util.h"
#include "lang.h"
#include "param.h"
#include "chr.h"

View File

@ -16,4 +16,7 @@
void parse_hierarchy(void);
void parse_characteristics(void);
void yyerrorf(const char *fmt, ...);
void yyerror(const char *s);
#endif /* !LANG_H */

View File

@ -18,6 +18,7 @@
#include "param.h"
#include "chr.h"
#include "db.h"
#include "lang.h"
#include "y.tab.h"

View File

@ -12,7 +12,7 @@
#include <glib.h>
#include "util.h"
#include "lang.h"
#include "param.h"

View File

@ -26,7 +26,4 @@
const char *unique(const char *s);
void yyerrorf(const char *fmt, ...);
void yyerror(const char *s);
#endif /* !UTIL_H */