summaryrefslogtreecommitdiff
path: root/lib/ZCmpUIDP.c
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1997-09-14 17:50:06 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1997-09-14 17:50:06 +0000
commitac16f380e349fa39ec7e26bccb5456cb300006a5 (patch)
treec07ca88af97b4f6b77d28a2dc723d2e4621ed302 /lib/ZCmpUIDP.c
parentd33e482744fad80d95cdd89ed380c5b8401e49bf (diff)
Pull in sources from zephyr locker. See /mit/zephyr/repository for
detailed change information.
Diffstat (limited to 'lib/ZCmpUIDP.c')
-rw-r--r--lib/ZCmpUIDP.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/ZCmpUIDP.c b/lib/ZCmpUIDP.c
index 29bb69b..ca4466a 100644
--- a/lib/ZCmpUIDP.c
+++ b/lib/ZCmpUIDP.c
@@ -16,20 +16,18 @@
static char rcsid_ZCompareUIDPred_c[] = "$Header$";
#endif
-#include <zephyr/mit-copyright.h>
-
-#include <zephyr/zephyr_internal.h>
+#include <internal.h>
int ZCompareUIDPred(notice, uid)
ZNotice_t *notice;
- ZUnique_Id_t *uid;
+ void *uid;
{
- return (ZCompareUID(&notice->z_uid, uid));
+ return (ZCompareUID(&notice->z_uid, (ZUnique_Id_t *) uid));
}
int ZCompareMultiUIDPred(notice, uid)
ZNotice_t *notice;
- ZUnique_Id_t *uid;
+ void *uid;
{
- return (ZCompareUID(&notice->z_multiuid, uid));
+ return (ZCompareUID(&notice->z_multiuid, (ZUnique_Id_t *) uid));
}