From: Richard Jones Date: Mon, 2 Nov 2009 14:30:54 +0000 (+0000) Subject: examples/to-xml.c: Don't depend on Gnulib function. X-Git-Tag: 1.0.77~10 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=00425c073e5c0743ef425cd12108a85ac36b15f4 examples/to-xml.c: Don't depend on Gnulib function. Since this program is just an example, it shouldn't require the Gnulib c-ctype functions. --- diff --git a/examples/to-xml.c b/examples/to-xml.c index e9ea063..6d0a1df 100644 --- a/examples/to-xml.c +++ b/examples/to-xml.c @@ -16,9 +16,9 @@ #include #include #include +#include #include -#include "c-ctype.h" /* Note that if any API call fails, we can just exit. The * standard error handler will have printed the error message @@ -149,7 +149,7 @@ display_partitions (guestfs_h *g, const char *dev) * That's a limitation of sorts of the Linux kernel. (Actually, * we could do this if we add the kpartx program to libguestfs). */ - if (strncmp (dev, "/dev/sd", 7) != 0 || c_isdigit (dev[strlen(dev)-1])) { + if (strncmp (dev, "/dev/sd", 7) != 0 || isdigit (dev[strlen(dev)-1])) { printf ("\n", dev); return; }