aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-06-11 00:09:46 +0000
committerMike Frysinger <vapier@gentoo.org>2005-06-11 00:09:46 +0000
commit3968082df49de5c417a0a45953333662e3f88b63 (patch)
treeac3acc9c2c193b94ffc4b5197820e3af61871817
parenta1c9c66ac09a80af7b362697a63df0a226cf3214 (diff)
downloadbusybox-w32-3968082df49de5c417a0a45953333662e3f88b63.tar.gz
busybox-w32-3968082df49de5c417a0a45953333662e3f88b63.tar.bz2
busybox-w32-3968082df49de5c417a0a45953333662e3f88b63.zip
replace functions with defines
-rw-r--r--e2fsprogs/uuid/uuid.h6
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 */
68void 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 */
71int uuid_compare(const uuid_t uu1, const uuid_t uu2); 72int uuid_compare(const uuid_t uu1, const uuid_t uu2);
72 73
73/* copy.c */ 74/* copy.c */
74void 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 */
77void uuid_generate(uuid_t out); 79void uuid_generate(uuid_t out);