summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-11-02 14:30:54 +0000
committerRichard Jones <rjones@redhat.com>2009-11-02 16:37:51 +0000
commit00425c073e5c0743ef425cd12108a85ac36b15f4 (patch)
tree1915d101d95d61600f9d516911bf92019558bb60
parentff704b2291680ca52051452abbce033953f65f3e (diff)
downloadlibguestfs-00425c073e5c0743ef425cd12108a85ac36b15f4.tar.gz
libguestfs-00425c073e5c0743ef425cd12108a85ac36b15f4.tar.xz
libguestfs-00425c073e5c0743ef425cd12108a85ac36b15f4.zip
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.
-rw-r--r--examples/to-xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/to-xml.c b/examples/to-xml.c
index e9ea0639..6d0a1dfb 100644
--- a/examples/to-xml.c
+++ b/examples/to-xml.c
@@ -16,9 +16,9 @@
#include <stdint.h>
#include <inttypes.h>
#include <unistd.h>
+#include <ctype.h>
#include <guestfs.h>
-#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 ("<vm-image dev=\"%s\"/>\n", dev);
return;
}