diff options
author | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-06-27 18:19:37 +0000 |
---|---|---|
committer | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-06-27 18:19:37 +0000 |
commit | 85f58eddeb25c7a516c9b99194ab3a845e25c2d1 (patch) | |
tree | f42c388aff0cc682afe487a8d7974625a35497de /usr.sbin/ldapd/uuid.h | |
parent | 4d0b1da009b5bc715bec383893f2c9d28b5f9f58 (diff) |
Remove unused functions and variables, found by lint.
Diffstat (limited to 'usr.sbin/ldapd/uuid.h')
-rw-r--r-- | usr.sbin/ldapd/uuid.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/usr.sbin/ldapd/uuid.h b/usr.sbin/ldapd/uuid.h index 65b8d77ea1d..0bcea221531 100644 --- a/usr.sbin/ldapd/uuid.h +++ b/usr.sbin/ldapd/uuid.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uuid.h,v 1.2 2010/06/15 15:14:57 martinh Exp $ */ +/* $OpenBSD: uuid.h,v 1.3 2010/06/27 18:19:36 martinh Exp $ */ /* * Copyright (c) 2002, Stockholms Universitet * (Stockholm University, Stockholm Sweden) @@ -48,13 +48,8 @@ struct uuid { typedef struct uuid afsUUID; -int uuid_compare(const afsUUID *, const afsUUID *); void uuid_create(afsUUID *); -int uuid_create_nil(afsUUID *); -int uuid_equal(const afsUUID *, const afsUUID *); -int uuid_from_string(const char *, afsUUID *); -int uuid_is_nil(const afsUUID *); -int uuid_to_string(const afsUUID *, char *, size_t); +void uuid_to_string(const afsUUID *, char *, size_t); #endif /* __ARLA_UUID_H__ */ |