Added: utf_clone
authortwisti <none@none>
Mon, 6 Jun 2005 15:20:41 +0000 (15:20 +0000)
committertwisti <none@none>
Mon, 6 Jun 2005 15:20:41 +0000 (15:20 +0000)
src/vm/utf8.c
src/vm/utf8.h

index d81446448ae70cbc083534a78c73736c0d787875..2a080be5edbcb37c216b98f033fd2e99e89bd50f 100644 (file)
@@ -30,7 +30,7 @@
             Andreas Krall
             Christian Thalinger
 
-   $Id: utf8.c 2506 2005-05-23 08:32:38Z twisti $
+   $Id: utf8.c 2560 2005-06-06 15:20:41Z twisti $
 
 */
 
@@ -94,6 +94,7 @@ utf *utf_SourceFile;                    /* SourceFile                         */
 
 utf *utf_init;                          /* <init>                             */
 utf *utf_clinit;                        /* <clinit>                           */
+utf *utf_clone;                         /* clone                              */
 utf *utf_finalize;                      /* finalize                           */
 
 utf *utf_printStackTrace;
@@ -181,6 +182,7 @@ void utf8_init(void)
 
        utf_init                           = utf_new_char("<init>");
        utf_clinit                         = utf_new_char("<clinit>");
+       utf_clone                      = utf_new_char("clone");
        utf_finalize                   = utf_new_char("finalize");
 
        utf_printStackTrace            = utf_new_char("printStackTrace");
index 3c4e4950367d0ea149a49e9f37a18a6a1bb1b161..74b71bf539760263fbf306e9860ba55807a39615 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: utf8.h 2427 2005-05-01 12:27:54Z jowenn $
+   $Id: utf8.h 2560 2005-06-06 15:20:41Z twisti $
 
 */
 
@@ -101,6 +101,7 @@ extern utf *utf_SourceFile;
 
 extern utf *utf_init;
 extern utf *utf_clinit;
+extern utf *utf_clone;
 extern utf *utf_finalize;
 
 extern utf *utf_printStackTrace;