GNU header update.
[cacao.git] / src / native / native.h
index 4241a5ad78ea9a43b224a30ea982167898b414e2..6e92889d08d70ddaf3c4f6ddf8ee45a7370717fd 100644 (file)
@@ -1,9 +1,9 @@
 /* native/native.h - table of native functions
 
-   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
-   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
-   P. Tomsich, J. Wenninger
+   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
+   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
+   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
+   Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
@@ -26,7 +26,7 @@
 
    Authors: Reinhard Grafl
 
-   $Id: native.h 1655 2004-12-02 16:51:20Z carolyn $
+   $Id: native.h 1735 2004-12-07 14:33:27Z twisti $
 
 */
 
@@ -205,18 +205,13 @@ struct  nativeMethod  {
 };
 
 
-static struct nativeCall {
+struct nativeCall {
        char *classname;
        struct nativeMethod methods[MAXCALLS];
        int methCnt;
        int callCnt[MAXCALLS];
-} nativeCalls[] =
-{
-#include "nativecalls.inc"
 };
 
-#define NATIVECALLSSIZE  (sizeof(nativeCalls)/sizeof(struct nativeCall))
-
 
 struct methodCompCall {
        utf *classname;
@@ -237,7 +232,7 @@ struct nativeCompCall {
        struct nativeCompMethod methods[MAXCALLS];
        int methCnt;
        int callCnt[MAXCALLS];
-} nativeCompCalls[NATIVECALLSSIZE];
+};
 
 
 bool natcall2utf(bool);