summaryrefslogtreecommitdiff
path: root/lib/strdup.c
diff options
context:
space:
mode:
authorLorry <lorry@roadtrain.codethink.co.uk>2012-08-15 17:04:08 +0100
committerLorry <lorry@roadtrain.codethink.co.uk>2012-08-15 17:04:08 +0100
commit35a870a7a23c7d6076c658c1ec2122b642f264ed (patch)
treeb9ce5b562cf1a297844a7983c6b3fe33bb536d23 /lib/strdup.c
downloadcheck-35a870a7a23c7d6076c658c1ec2122b642f264ed.tar.gz
Tarball conversion
Diffstat (limited to 'lib/strdup.c')
-rw-r--r--lib/strdup.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/strdup.c b/lib/strdup.c
new file mode 100644
index 0000000..33b9ae7
--- /dev/null
+++ b/lib/strdup.c
@@ -0,0 +1,8 @@
+#include "libcompat.h"
+
+char *
+strdup (const char *str CK_ATTRIBUTE_UNUSED)
+{
+ assert (0);
+ return NULL;
+}