From 36d036b0815ccaf3883a7e06c2ddcf0f3c916ec5 Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Wed, 22 May 2024 11:05:18 +0200 Subject: [PATCH] Added missing prototypes. --- master/module.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/master/module.c b/master/module.c index 407b7d92..3e81f25e 100644 --- a/master/module.c +++ b/master/module.c @@ -44,6 +44,10 @@ void __exit ec_cleanup_module(void); static int ec_mac_parse(uint8_t *, const char *, int); +// prototypes for private functions +int ec_mac_equal(const uint8_t *, const uint8_t *); +int ec_mac_is_broadcast(const uint8_t *); + /****************************************************************************/ static char *main_devices[MAX_MASTERS]; /**< Main devices parameter. */