From 151f30888748cc37b82c1c21c4428c53279bf8eb Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 31 Dec 2014 12:30:13 +0000 Subject: Add option -u to import and importas --- src/include-local/exlsn.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/include-local') diff --git a/src/include-local/exlsn.h b/src/include-local/exlsn.h index 3665bca..2bdcf58 100644 --- a/src/include-local/exlsn.h +++ b/src/include-local/exlsn.h @@ -5,16 +5,18 @@ #include #include +#include typedef struct exlsn_s exlsn_t, *exlsn_t_ref ; struct exlsn_s { stralloc vars ; stralloc values ; - stralloc data ; /* array of elsubst */ + genalloc data ; /* array of elsubst */ + stralloc modifs ; } ; -#define EXLSN_ZERO { .vars = STRALLOC_ZERO, .values = STRALLOC_ZERO, .data = STRALLOC_ZERO } +#define EXLSN_ZERO { .vars = STRALLOC_ZERO, .values = STRALLOC_ZERO, .data = GENALLOC_ZERO, .modifs = STRALLOC_ZERO } extern void exlsn_free (exlsn_t *) ; @@ -29,8 +31,8 @@ extern exlsnfunc_t exlsn_exlp ; extern exlsnfunc_t exlsn_multidefine ; extern int exlp (unsigned int, char const *const *, exlsn_t *) ; -extern void el_substandrun (int, char const *const *, char const *const *, exlsn_t *) gccattr_noreturn ; -extern void el_substandrun_str (stralloc *, unsigned int, char const *const *, exlsn_t *) gccattr_noreturn ; +extern void el_substandrun (int, char const *const *, char const *const *, exlsn_t const *) gccattr_noreturn ; +extern void el_substandrun_str (stralloc *, unsigned int, char const *const *, exlsn_t const *) gccattr_noreturn ; extern void exlsn_main (int, char const **, char const *const *, exlsnfunc_t *, char const *) gccattr_noreturn ; #endif -- cgit v1.2.3