summaryrefslogtreecommitdiff
path: root/includes/RtsAPI.h
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-07-17 14:20:50 +0000
committerIan Lynagh <igloo@earth.li>2007-07-17 14:20:50 +0000
commit8bac478832e0cf9fa7ad1cfc81c08b0b9f13938e (patch)
treeab0e7316f2e4bbb58b5ed9942c8798866e4530b5 /includes/RtsAPI.h
parent1d708730ee5d0882c59f3d90422ff04fa0e5f39b (diff)
downloadhaskell-8bac478832e0cf9fa7ad1cfc81c08b0b9f13938e.tar.gz
Implement the RTS side of GHC.Environment.getFullArgs
Diffstat (limited to 'includes/RtsAPI.h')
-rw-r--r--includes/RtsAPI.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/RtsAPI.h b/includes/RtsAPI.h
index 7d28328080..54fa3ee560 100644
--- a/includes/RtsAPI.h
+++ b/includes/RtsAPI.h
@@ -42,6 +42,8 @@ extern void shutdownHaskell ( void );
extern void shutdownHaskellAndExit ( int exitCode );
extern void getProgArgv ( int *argc, char **argv[] );
extern void setProgArgv ( int argc, char *argv[] );
+extern void getFullProgArgv ( int *argc, char **argv[] );
+extern void setFullProgArgv ( int argc, char *argv[] );
/* exit() override */
extern void (*exitFn)(int);