Darwin doesn't have strndup.
authorKeith Packard <keithp@keithp.com>
Tue, 27 Jul 2010 01:10:07 +0000 (18:10 -0700)
committerKeith Packard <keithp@keithp.com>
Tue, 27 Jul 2010 01:10:07 +0000 (18:10 -0700)
This provides a private version of this GNU extension.

Signed-off-by: Keith Packard <keithp@keithp.com>
ao-tools/libaltos/libaltos.c

index 7d471f38f756b9bac70947a2c2d5edc413ebfa5f..df0d5b2eba6b21f99ea35e9196bed7771565cd6a 100644 (file)
@@ -40,6 +40,26 @@ match_dev(char *product, int serial, struct altos_device *device)
        return i;
 }
 
        return i;
 }
 
+#ifdef DARWIN
+/* Mac OS X don't have strndup even if _GNU_SOURCE is defined */
+static char *
+altos_strndup (const char *s, size_t n)
+{
+    size_t len = strlen (s);
+    char *ret;
+
+    if (len <= n)
+       return strdup (s);
+    ret = malloc(n + 1);
+    strncpy(ret, s, n);
+    ret[n] = '\0';
+    return ret;
+}
+
+#else
+#define altos_strndup strndup
+#endif
+
 int
 altos_find_by_arg(char *arg, char *default_product, struct altos_device *device)
 {
 int
 altos_find_by_arg(char *arg, char *default_product, struct altos_device *device)
 {
@@ -61,7 +81,7 @@ altos_find_by_arg(char *arg, char *default_product, struct altos_device *device)
                        /* check for <product>:<serial> */
                        colon = strchr(arg, ':');
                        if (colon) {
                        /* check for <product>:<serial> */
                        colon = strchr(arg, ':');
                        if (colon) {
-                               product = strndup(arg, colon - arg);
+                               product = altos_strndup(arg, colon - arg);
                                serial = strtol(colon + 1, &end, 0);
                                if (*end != '\0')
                                        return 0;
                                serial = strtol(colon + 1, &end, 0);
                                if (*end != '\0')
                                        return 0;