X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=examples%2Fto-xml.c;h=e9ea063922ac76f819d400944f914a5bcfe978a3;hb=f57f338c3bd937e923e1ba7cc4791b9462192110;hp=6d0a1dfb3fbf340d3e1579b21942c3d36617837c;hpb=8869adf1e811d894088dbb0f371edc23299005c8;p=libguestfs.git diff --git a/examples/to-xml.c b/examples/to-xml.c index 6d0a1df..e9ea063 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 || isdigit (dev[strlen(dev)-1])) { + if (strncmp (dev, "/dev/sd", 7) != 0 || c_isdigit (dev[strlen(dev)-1])) { printf ("\n", dev); return; }