about summary refs log tree commit diff
path: root/src/rt/rust_env.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/rust_env.h')
-rw-r--r--src/rt/rust_env.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rt/rust_env.h b/src/rt/rust_env.h
index 007ac9b1e0b..0e3af9eae60 100644
--- a/src/rt/rust_env.h
+++ b/src/rt/rust_env.h
@@ -13,9 +13,11 @@ struct rust_env {
     bool detailed_leaks;
     char* rust_seed;
     bool poison_on_free;
+    int argc;
+    char **argv;
 };
 
-rust_env* load_env();
+rust_env* load_env(int argc, char **argv);
 void free_env(rust_env *rust_env);
 
 #endif