summaryrefslogtreecommitdiff
path: root/driver/haddock/haddock.c
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-08-01 18:09:17 +0000
committerIan Lynagh <igloo@earth.li>2010-08-01 18:09:17 +0000
commitdaf5b615e497ab2fc9457c86f2c5c4cb00a14213 (patch)
treebad25416721df28ebde647fe08a442157238b6b8 /driver/haddock/haddock.c
parent7e25751e8ba0704e23fcf6fff1c23af3ac5af696 (diff)
downloadhaskell-daf5b615e497ab2fc9457c86f2c5c4cb00a14213.tar.gz
Add a versions haddock binary for Windows
Diffstat (limited to 'driver/haddock/haddock.c')
-rw-r--r--driver/haddock/haddock.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/driver/haddock/haddock.c b/driver/haddock/haddock.c
new file mode 100644
index 0000000000..e43d33f046
--- /dev/null
+++ b/driver/haddock/haddock.c
@@ -0,0 +1,14 @@
+
+#include "cwrapper.h"
+#include "getLocation.h"
+#include <stddef.h>
+
+int main(int argc, char** argv) {
+ char *binDir;
+ char *exePath;
+
+ binDir = getExecutablePath();
+ exePath = mkString("%s/haddock.exe", binDir);
+
+ run(exePath, 0, NULL, argc - 1, argv + 1);
+}