diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2004-01-02 19:23:29 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2004-01-02 19:23:29 +0000 |
commit | 0c7aecb88dc696f66f49f3bed54a037361a26b8d (patch) | |
tree | 32bde8a45b8881d3d121fd39cc1270980f596096 /byterun/intext.h | |
parent | 7ba8c1ca1d044232ed6d81d04a8c46800cf15097 (diff) |
depollution suite (et fin?) (PR#1914 et PR#1956)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6047 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/intext.h')
-rw-r--r-- | byterun/intext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/byterun/intext.h b/byterun/intext.h index a36174522..5f831e1b6 100644 --- a/byterun/intext.h +++ b/byterun/intext.h @@ -165,10 +165,10 @@ unsigned char * caml_code_checksum (void); #ifndef NATIVE_CODE #include "fix_code.h" -#define code_area_start ((char *) start_code) -#define code_area_end ((char *) start_code + code_size) +#define caml_code_area_start ((char *) caml_start_code) +#define caml_code_area_end ((char *) caml_start_code + caml_code_size) #else -extern char * code_area_start, * code_area_end; +extern char * caml_code_area_start, * caml_code_area_end; #endif /* </private> */ |