startup/modules.c
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 14 Sep 2013 15:48:03 +0100
branchdevelopment
changeset 2729 ac412f6ea6d4
parent 2429 ebece4dcaab9
child 2711 a00302fe5083
permissions -rw-r--r--
More support for method's source display. Not yet working. The behaviour can (whether to show full class source or just method's source) be now controlled by JavaMethod class>>showFullSource: More work has to be done to fully support this.

/* $Header: /cvs/stx/stx/libjava/startup/modules.c,v 1.3 2013-02-25 11:15:34 vrany Exp $
 *
 * DO NOT EDIT 
 * automagically generated from the projectDefinition: stx_libjava_startup.
 *
 * Warning: once you modify this file, do not rerun
 * stmkmp or projectDefinition-build again - otherwise, your changes are lost.
 */
typedef void (*vf)();

extern void _JavaStartup_Init();
extern void _stx_137libjava_137startup_Init();


static vf modules[] = {
    _JavaStartup_Init,
_stx_137libjava_137startup_Init,

    (vf)0
};

vf *__modules__ = modules;