diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-09-03 01:01:58 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-09-03 01:02:05 +0200 |
commit | 483c223a856b6d37bb601c4d0a626449da1cd085 (patch) | |
tree | b621db82840da0a2b230324078e633dbdc349aa9 /src/extensions | |
parent | 80570d423916695d20701b4d4a70aefaca0bfcbe (diff) |
replace requirement row with H_PAYTO
Diffstat (limited to 'src/extensions')
-rw-r--r-- | src/extensions/age_restriction/age_restriction.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/extensions/age_restriction/age_restriction.c b/src/extensions/age_restriction/age_restriction.c index 08b598d50..3d160e49c 100644 --- a/src/extensions/age_restriction/age_restriction.c +++ b/src/extensions/age_restriction/age_restriction.c @@ -164,6 +164,10 @@ struct TALER_Extension TE_age_restriction = { * @return pointer to TALER_Extension on success or NULL otherwise. */ void * +libtaler_extension_age_restriction_init (void *arg); + +/* Declaration used to squash compiler warning */ +void * libtaler_extension_age_restriction_init (void *arg) { const struct GNUNET_CONFIGURATION_Handle *cfg = arg; @@ -243,6 +247,10 @@ libtaler_extension_age_restriction_init (void *arg) * @return pointer to TALER_Extension on success or NULL otherwise. */ void * +libtaler_extension_age_restriction_done (void *arg); + +/* Declaration used to squash compiler warning */ +void * libtaler_extension_age_restriction_done (void *arg) { GNUNET_log (GNUNET_ERROR_TYPE_INFO, |