diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-07-01 11:11:21 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-07-01 11:11:21 +0200 |
commit | 6542ece91a783e999f61cc51cbe18c8b4c96a36c (patch) | |
tree | 061fd97a1a3ae1c45e22a2609a454ed69e14df19 /conf | |
parent | 39369d6fbe4b3f73c8110b14623f367c8ffded50 (diff) | |
download | bird-6542ece91a783e999f61cc51cbe18c8b4c96a36c.tar bird-6542ece91a783e999f61cc51cbe18c8b4c96a36c.zip |
Function calling in filters works - somehow. Calling syntax is
currently very ugly, beware. Variables are not really local - that
needs to be fixed.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/conf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/conf.h b/conf/conf.h index 8604324..4f6f030 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -52,6 +52,7 @@ struct symbol { struct symbol *next; int class; int aux; + void *aux2; void *def; char name[1]; }; |