home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 4
/
AACD04.ISO
/
AACD
/
Programming
/
chunkyppc
/
test_new_68k.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
|
1999-09-07
|
254 b
|
22 lines
#include <stdio.h>
struct test
{
int a;
};
void * __saveds myhook(void *data)
{
struct test *tester=data;
fprintf(stderr,"68k: %i\n",tester->a);
tester->a+=2;
return (void *)tester;
}
extern void mixedmain();
void main()
{
mixedmain();
}