diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2011-01-28 07:40:08 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2011-01-28 07:40:08 +0000 |
commit | bf64985e3b2d4edb59914042830da64d5354dcfb (patch) | |
tree | 127ec30643352ea79be80d1b7f176166ae005625 /util/nvramtool/reg_expr.h | |
parent | 1c2734f5b67f08f8b440ca29b74831e05e4206bb (diff) | |
download | coreboot-bf64985e3b2d4edb59914042830da64d5354dcfb.tar.xz |
No need to add varargs magic to a simple regex wrapper.
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6308 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/nvramtool/reg_expr.h')
-rw-r--r-- | util/nvramtool/reg_expr.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/util/nvramtool/reg_expr.h b/util/nvramtool/reg_expr.h index 1b1657fa43..c93215b782 100644 --- a/util/nvramtool/reg_expr.h +++ b/util/nvramtool/reg_expr.h @@ -34,8 +34,6 @@ #include <regex.h> #include "common.h" -void compile_reg_exprs(int cflags, int num_exprs, - /* const char *expr1, regex_t *reg1, */ ...); -void free_reg_exprs(int num_exprs, /* regex_t *reg1, */ ...); +void compile_reg_expr(int cflags, const char *expr, regex_t *reg); #endif /* REG_EXPR_H */ |