home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Times
/
AmigaTimes.iso
/
programme
/
GoldED
/
developer
/
examples
/
syntax
/
example_simple
/
init.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1998-10-06
|
240 b
|
23 lines
#include "defs.h"
/// "Prototypes"
Prototype void InitC(void);
///
/// "Init"
/* ----------------------------------- InitC -----------------------------------
Library startup code (C entry point).
*/
void
InitC(void)
{
;
}
///