startup/modules.c
author Marcel Hlopko <marcel.hlopko@gmail.com>
Thu, 19 Sep 2013 23:24:00 +0200
branchdevelopment
changeset 2752 e3092c16bcce
parent 2731 13f5be2bf83b
child 3360 1a8899091305
permissions -rw-r--r--
add cleanCacheFlag to JavaFieldRef2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2678
c865275e48a7 Updated to match Mercurial revision a00302fe5083 with two tweaks:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2396
diff changeset
     1
/* $Header: /cvs/stx/stx/libjava/startup/modules.c,v 1.4 2013-09-06 00:44:30 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;