diff options
Diffstat (limited to 'progs')
-rw-r--r-- | progs/perf/common.h | 3 | ||||
-rw-r--r-- | progs/perf/teximage.c | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/progs/perf/common.h b/progs/perf/common.h index fc49bbed32f..6ea17402b52 100644 --- a/progs/perf/common.h +++ b/progs/perf/common.h @@ -24,6 +24,9 @@ #define COMMON_H +#include <stddef.h> /* for offsetof() */ + + typedef void (*PerfRateFunc)(unsigned count); diff --git a/progs/perf/teximage.c b/progs/perf/teximage.c index 11d781fccc6..634cd835588 100644 --- a/progs/perf/teximage.c +++ b/progs/perf/teximage.c @@ -50,11 +50,8 @@ static const struct vertex vertices[1] = { { 0.0, 0.0, 0.5, 0.5 }, }; -#if 0 #define VOFFSET(F) ((void *) offsetof(struct vertex, F)) -#else -#define VOFFSET(F) ((void *) &((struct vertex *)NULL)->F) -#endif + /** Called from test harness/main */ void |