summaryrefslogtreecommitdiffstats
path: root/byterun/finalise.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2000-02-10 14:04:59 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2000-02-10 14:04:59 +0000
commit9e206909f48d5d2579b6ec17764d3273df23ff08 (patch)
tree3319a3e0c3383ed812f781859aadffd7f1462fdf /byterun/finalise.c
parent7175ab048dcaaa39649ebc386ae37750baaf27e1 (diff)
Introduction des blocs de type Custom.
Remplacement des blocs de type Final par des blocs de type Custom. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2804 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/finalise.c')
-rw-r--r--byterun/finalise.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/finalise.c b/byterun/finalise.c
index 9f96a3069..e0c548226 100644
--- a/byterun/finalise.c
+++ b/byterun/finalise.c
@@ -20,7 +20,7 @@
#include "roots.h"
#include "signals.h"
-typedef struct final {
+struct final {
value fun;
value val;
};