mirror of
https://github.com/weiju/amiga-stuff
synced 2025-12-08 14:58:33 +00:00
12 lines
228 B
C
12 lines
228 B
C
#include <exec/libraries.h>
|
|
|
|
#define SEGLISTPTR APTR
|
|
#include "example/examplebase.h"
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("ExampleBase size: %d\n", (int) sizeof(struct ExampleBase));
|
|
return 0;
|
|
}
|