startup/modules.c
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 07 May 2013 12:39:09 +0100
branchdevelopment
changeset 2588 58b1e0fd20e7
parent 2429 ebece4dcaab9
child 2711 a00302fe5083
permissions -rw-r--r--
Changed JavaVM>>classForName: to faster JavaVM>>classForName:definedBy:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2396
fadc6d7a2f5b Updated to rev 009a0df3afce
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2353
diff changeset
     1
/* $Header: /cvs/stx/stx/libjava/startup/modules.c,v 1.3 2013-02-25 11:15:34 vrany Exp $
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     2
 *
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     3
 * DO NOT EDIT 
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     4
 * automagically generated from the projectDefinition: stx_libjava_startup.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     5
 *
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     6
 * Warning: once you modify this file, do not rerun
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     7
 * stmkmp or projectDefinition-build again - otherwise, your changes are lost.
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     8
 */
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
     9
typedef void (*vf)();
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    10
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    11
extern void _JavaStartup_Init();
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    12
extern void _stx_137libjava_137startup_Init();
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    13
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    14
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    15
static vf modules[] = {
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    16
    _JavaStartup_Init,
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    17
_stx_137libjava_137startup_Init,
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    18
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    19
    (vf)0
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    20
};
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    21
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents:
diff changeset
    22
vf *__modules__ = modules;