From 28c1e4d3eb3162c0177085bae753102994a35846 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 1 Nov 2010 15:38:37 +1100 Subject: s4-modules: get rid of the remaining static prototypes for modules the waf build now generates the prototype declarations for us --- source4/ntvfs/sysdep/sys_lease.c | 8 ++------ source4/ntvfs/sysdep/sys_notify.c | 4 ++-- 2 files changed, 4 insertions(+), 8 deletions(-) (limited to 'source4/ntvfs/sysdep') diff --git a/source4/ntvfs/sysdep/sys_lease.c b/source4/ntvfs/sysdep/sys_lease.c index 12fd83e8e0..8b0b3a5110 100644 --- a/source4/ntvfs/sysdep/sys_lease.c +++ b/source4/ntvfs/sysdep/sys_lease.c @@ -107,15 +107,11 @@ _PUBLIC_ NTSTATUS sys_lease_register(const struct sys_lease_ops *backend) return NT_STATUS_OK; } -#ifndef STATIC_sys_lease_MODULES -#define STATIC_sys_lease_MODULES NULL -#endif - _PUBLIC_ NTSTATUS sys_lease_init(void) { static bool initialized = false; - extern NTSTATUS sys_lease_linux_init(void); - +#define _MODULE_PROTO(init) extern NTSTATUS init(void); + STATIC_sys_lease_MODULES_PROTO; init_module_fn static_init[] = { STATIC_sys_lease_MODULES }; if (initialized) return NT_STATUS_OK; diff --git a/source4/ntvfs/sysdep/sys_notify.c b/source4/ntvfs/sysdep/sys_notify.c index 57e921b206..72509e67a5 100644 --- a/source4/ntvfs/sysdep/sys_notify.c +++ b/source4/ntvfs/sysdep/sys_notify.c @@ -134,8 +134,8 @@ _PUBLIC_ NTSTATUS sys_notify_register(struct sys_notify_backend *backend) _PUBLIC_ NTSTATUS sys_notify_init(void) { static bool initialized = false; - extern NTSTATUS sys_notify_inotify_init(void); - +#define _MODULE_PROTO(init) extern NTSTATUS init(void); + STATIC_sys_notify_MODULES_PROTO; init_module_fn static_init[] = { STATIC_sys_notify_MODULES }; if (initialized) return NT_STATUS_OK; -- cgit