summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-03-01 13:07:36 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-03-01 13:07:36 +0000
commitd35356e840b98f614212fcfedb8cf46ad89b4861 (patch)
tree2bbc8ce98045334f5672e09fe66155542ef8d89c
parentb341b2d002c9d8cd125c53b4c274d1a22244e531 (diff)
downloadhaskell-d35356e840b98f614212fcfedb8cf46ad89b4861.tar.gz
update docs w.r.t. dllMain() definition (EXTFUN is no more)
-rw-r--r--ghc/docs/users_guide/win32-dlls.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/docs/users_guide/win32-dlls.xml b/ghc/docs/users_guide/win32-dlls.xml
index 70defea5c5..959f7ce1b6 100644
--- a/ghc/docs/users_guide/win32-dlls.xml
+++ b/ghc/docs/users_guide/win32-dlls.xml
@@ -412,7 +412,7 @@ RTS-&ndash;&ndash;a possible implementation is:
#include &lt;windows.h&gt;
#include &lt;Rts.h&gt;
-EXTFUN(__stginit_Adder);
+extern void__stginit_Adder(void);
static char* args[] = { "ghcDll", NULL };
/* N.B. argv arrays must end with NULL */