summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--h/zephyr/zephyr.h2
-rw-r--r--lib/ZCmpUIDP.c7
2 files changed, 8 insertions, 1 deletions
diff --git a/h/zephyr/zephyr.h b/h/zephyr/zephyr.h
index 8bcb462..2d0a140 100644
--- a/h/zephyr/zephyr.h
+++ b/h/zephyr/zephyr.h
@@ -124,7 +124,7 @@ extern C_Block __Zephyr_session;
#endif
/* ZCompareUIDPred definition */
-extern int ZCompareUIDPred();
+extern int ZCompareUIDPred(), ZCompareMultiUIDPred();
/* ZGetSession() macro */
#define ZGetSession() (__Zephyr_session)
diff --git a/lib/ZCmpUIDP.c b/lib/ZCmpUIDP.c
index 0571bf0..17669e2 100644
--- a/lib/ZCmpUIDP.c
+++ b/lib/ZCmpUIDP.c
@@ -26,3 +26,10 @@ int ZCompareUIDPred(notice, uid)
{
return (ZCompareUID(&notice->z_uid, uid));
}
+
+int ZCompareMultiUIDPred(notice, uid)
+ ZNotice_t *notice;
+ ZUnique_Id_t *uid;
+{
+ return (ZCompareUID(&notice->z_multiuid, uid));
+}