Implement RString and RStringList return types.
[libguestfs.git] / daemon / file.c
index 1e633d8..db19918 100644 (file)
@@ -61,3 +61,10 @@ do_touch (const char *path)
   close (fd);
   return 0;
 }
+
+char *
+do_cat (const char *path)
+{
+  reply_with_error ("cat command is not yet implemented");
+  return NULL;
+}