diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-01 15:38:37 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-01 18:55:19 +1100 |
commit | 28c1e4d3eb3162c0177085bae753102994a35846 (patch) | |
tree | 60f1b1ee601024af24723fa0170b8e5994b6e754 /source4/param | |
parent | 4404b4c700270c7607d7b8d792ab23ce1d080463 (diff) | |
download | samba-28c1e4d3eb3162c0177085bae753102994a35846.tar.gz samba-28c1e4d3eb3162c0177085bae753102994a35846.tar.bz2 samba-28c1e4d3eb3162c0177085bae753102994a35846.zip |
s4-modules: get rid of the remaining static prototypes for modules
the waf build now generates the prototype declarations for us
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/share.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/param/share.c b/source4/param/share.c index 13d591ec1b..477ced7167 100644 --- a/source4/param/share.c +++ b/source4/param/share.c @@ -146,8 +146,8 @@ NTSTATUS share_get_context_by_name(TALLOC_CTX *mem_ctx, const char *backend_name */ NTSTATUS share_init(void) { - extern NTSTATUS share_ldb_init(void); - extern NTSTATUS share_classic_init(void); +#define _MODULE_PROTO(init) extern NTSTATUS init(void); + STATIC_share_MODULES_PROTO; init_module_fn static_init[] = { STATIC_share_MODULES }; run_init_functions(static_init); |