summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/SNIP/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/CONTRIB/SNIP/strdup.c')
-rwxr-xr-xreference/C/CONTRIB/SNIP/strdup.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/reference/C/CONTRIB/SNIP/strdup.c b/reference/C/CONTRIB/SNIP/strdup.c
new file mode 100755
index 0000000..88a2b3e
--- /dev/null
+++ b/reference/C/CONTRIB/SNIP/strdup.c
@@ -0,0 +1,15 @@
+/*
+** Portable, public domain strdup() by Bob Stout
+*/
+
+#include <stdlib.h>
+#include <string.h>
+
+char *strdup(const char *string)
+{
+ char *new;
+
+ if (NULL != (new = malloc(strlen(string) + 1)))
+ strcpy(new, string);
+ return new;
+}
msg'>The vexpress regulator implementation is currently just called vexpress. This is a problem because it clashes with another module with the same name in hardware monitors. This patch renames the vexpress regulator implementation to vexpress-regulator so that there will be no clash in the module namespace. Cc: Liviu Dudau <liviu.dudau@arm.com> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> Cc: Liam Girdwood <lgirdwood@gmail.com> Cc: Mark Brown <broonie@kernel.org> Reported-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/leds')