///////////////////////////////
#include <acknex.h>
#include <default.c>
///////////////////////////////
//works fine<----------
struct objects1
{
int a[1024];
}obj1,obj2;
//typedef doesnt work <------------
typedef struct objects2
{
int a[1024];
}objects2;
function main()
{
obj1.a[0]=100;//<----- correct
objects2.a[0]=100;//<----syntax error
}