summaryrefslogtreecommitdiff
path: root/capplets/file-types/libuuid/copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'capplets/file-types/libuuid/copy.c')
-rw-r--r--capplets/file-types/libuuid/copy.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/capplets/file-types/libuuid/copy.c b/capplets/file-types/libuuid/copy.c
deleted file mode 100644
index 5d0efc4aa..000000000
--- a/capplets/file-types/libuuid/copy.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * copy.c --- copy UUIDs
- *
- * Copyright (C) 1996, 1997 Theodore Ts'o.
- *
- * %Begin-Header%
- * This file may be redistributed under the terms of the GNU Public
- * License.
- * %End-Header%
- */
-
-#include "uuidP.h"
-
-void uuid_copy(uuid_t uu1, uuid_t uu2)
-{
- unsigned char *cp1, *cp2;
- int i;
-
- for (i=0, cp1 = uu1, cp2 = uu2; i < 16; i++)
- *cp1++ = *cp2++;
-}