StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
test.C
1 #include <stdio.h>
2 #include "rtsConditions.h"
3 #include <stdlib.h>
4 
5 int main()
6 {
7  rtsConditions *c;
8 
9 
10  printf("sizeof(rtsConditions) = %d\n",sizeof(rtsConditions));
11 
12  c = (rtsConditions *)malloc(sizeof(rtsConditions));
13  if(!c) printf("Can't alloc\n");
14 }