startup/modules.c
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 20 Feb 2013 23:05:49 +0000
branchdevelopment
changeset 2380 9195eccdcbd9
parent 1818 2e5ed72e7dfd
parent 2353 fa7400d022a0
child 2429 ebece4dcaab9
permissions -rw-r--r--
Merged 08505399cea8 and 0adf7bbcf2c9 (branch default - CVS HEAD)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2353
fa7400d022a0 Updated to https://swing.fit.cvut.cz/hg/stx.libjava/rev/31f8b995905e
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2152
diff changeset
     1
/* $Header: /cvs/stx/stx/libjava/startup/modules.c,v 1.2 2013-02-16 18:08:40 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;