diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:09:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 00:09:46 +0000 |
commit | 3968082df49de5c417a0a45953333662e3f88b63 (patch) | |
tree | ac3acc9c2c193b94ffc4b5197820e3af61871817 | |
parent | a1c9c66ac09a80af7b362697a63df0a226cf3214 (diff) | |
download | busybox-w32-3968082df49de5c417a0a45953333662e3f88b63.tar.gz busybox-w32-3968082df49de5c417a0a45953333662e3f88b63.tar.bz2 busybox-w32-3968082df49de5c417a0a45953333662e3f88b63.zip |
replace functions with defines
-rw-r--r-- | e2fsprogs/uuid/uuid.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/e2fsprogs/uuid/uuid.h b/e2fsprogs/uuid/uuid.h index e9cf889ae..fbb937e11 100644 --- a/e2fsprogs/uuid/uuid.h +++ b/e2fsprogs/uuid/uuid.h | |||
@@ -65,13 +65,15 @@ extern "C" { | |||
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | /* clear.c */ | 67 | /* clear.c */ |
68 | void uuid_clear(uuid_t uu); | 68 | /*void uuid_clear(uuid_t uu);*/ |
69 | #define uuid_clear(uu) memset(uu, 0, 16) | ||
69 | 70 | ||
70 | /* compare.c */ | 71 | /* compare.c */ |
71 | int uuid_compare(const uuid_t uu1, const uuid_t uu2); | 72 | int uuid_compare(const uuid_t uu1, const uuid_t uu2); |
72 | 73 | ||
73 | /* copy.c */ | 74 | /* copy.c */ |
74 | void uuid_copy(uuid_t dst, const uuid_t src); | 75 | /*void uuid_copy(uuid_t dst, const uuid_t src);*/ |
76 | #define uuid_copy(dst,src) memcpy(dst,src,16) | ||
75 | 77 | ||
76 | /* gen_uuid.c */ | 78 | /* gen_uuid.c */ |
77 | void uuid_generate(uuid_t out); | 79 | void uuid_generate(uuid_t out); |