summaryrefslogtreecommitdiff
path: root/src/lib/instance_name.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-04-02 14:06:30 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-04-02 14:06:30 +0200
commit8e1e865a25ec4e88f64b149764c239e286e42c49 (patch)
tree5c48ba6355e8465cccacdaf6b79c3922e0cbd332 /src/lib/instance_name.c
parent02972a88ac293356bcb4b03c8c6cd79735f7288a (diff)
downloadouroboros-8e1e865a25ec4e88f64b149764c239e286e42c49.tar.gz
ouroboros-8e1e865a25ec4e88f64b149764c239e286e42c49.zip
lib: Move strdup to utils
This moves strdup to utils to make it globally available.
Diffstat (limited to 'src/lib/instance_name.c')
-rw-r--r--src/lib/instance_name.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/lib/instance_name.c b/src/lib/instance_name.c
index 0f666211..2c70b419 100644
--- a/src/lib/instance_name.c
+++ b/src/lib/instance_name.c
@@ -33,25 +33,6 @@
#define instance_name_is_equal(a, b) (instance_name_cmp(a, b) == 0)
-static char * strdup(const char * src)
-{
- int len = 0;
- char * dst = NULL;
-
- if (src == NULL)
- return NULL;
-
- len = strlen(src) + 1;
-
- dst = malloc(len);
- if (dst == NULL)
- return NULL;
-
- memcpy(dst, src, len);
-
- return dst;
-}
-
instance_name_t * instance_name_create()
{
instance_name_t * tmp;