home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 4
/
AACD04.ISO
/
AACD
/
Programming
/
chunkyppc
/
test_new_68k.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-09-07
|
254b
|
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();
}