summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--trans/firmlink.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/trans/firmlink.c b/trans/firmlink.c
index ca094ecf..1c656a6f 100644
--- a/trans/firmlink.c
+++ b/trans/firmlink.c
@@ -25,6 +25,7 @@
#include <string.h>
#include <fcntl.h>
#include <argp.h>
+#include <argz.h>
#include <error.h>
#include <sys/mman.h>
@@ -287,6 +288,13 @@ trivfs_S_io_select_timeout (struct trivfs_protid *cred,
return trivfs_S_io_select (cred, reply, reply_type, type);
}
+error_t
+trivfs_append_args (struct trivfs_control *fsys,
+ char **argz, size_t *argz_len)
+{
+ return argz_add (argz, argz_len, "");
+}
+
error_t trivfs_get_source (char *source, size_t source_len)
{
strncpy (source, target, source_len - 1);