blob: 0038582213083a4525c95e8032f8ee628ebea387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main ()
{
struct foo {
int zoo;
int bar [10];
float baz;
};
#define offsetof(S,F) ((size_t) & (((S *) 0)->F))
struct foo *k = (struct foo *) malloc (offsetof (struct foo, bar[4]));
k->bar[1] = 9;
free (k);
return 0;
}
|