00001 #include <stdio.h> 00002 #include "rtsConditions.h" 00003 #include <stdlib.h> 00004 00005 int main() 00006 { 00007 rtsConditions *c; 00008 00009 00010 printf("sizeof(rtsConditions) = %d\n",sizeof(rtsConditions)); 00011 00012 c = (rtsConditions *)malloc(sizeof(rtsConditions)); 00013 if(!c) printf("Can't alloc\n"); 00014 }
1.5.9