aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/utils/utils.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2013-03-28 11:03:26 +0100
committerTobias Brunner <tobias@strongswan.org>2013-06-11 11:03:12 +0200
commit438a6693ca54a782342f27f30faa667a4e6612cc (patch)
treea39b61c3bdd6baede85beaf05cc83e08310a199a /src/libstrongswan/utils/utils.c
parent819c02dbc6e9203cb1f1df8ef76c7a5a5d8c205d (diff)
downloadstrongswan-438a6693ca54a782342f27f30faa667a4e6612cc.tar.bz2
strongswan-438a6693ca54a782342f27f30faa667a4e6612cc.tar.xz
Removed unused clalloc() function
Diffstat (limited to 'src/libstrongswan/utils/utils.c')
-rw-r--r--src/libstrongswan/utils/utils.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/libstrongswan/utils/utils.c b/src/libstrongswan/utils/utils.c
index 2f38d8a93..ba32720ea 100644
--- a/src/libstrongswan/utils/utils.c
+++ b/src/libstrongswan/utils/utils.c
@@ -48,19 +48,6 @@ ENUM(status_names, SUCCESS, NEED_MORE,
/**
* Described in header.
*/
-void *clalloc(void * pointer, size_t size)
-{
- void *data;
- data = malloc(size);
-
- memcpy(data, pointer, size);
-
- return (data);
-}
-
-/**
- * Described in header.
- */
void memxor(u_int8_t dst[], u_int8_t src[], size_t n)
{
int m, i;