summaryrefslogtreecommitdiff
path: root/stddef.c
blob: c42abf33e50ea462b409516c3c9c6ac47fcae2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stddef.h>
#include "test.h"

void test_stddef_h(void)
{
	ptrdiff_t ptrdiff;
	size_t size;
	wchar_t wchar;

	struct s {
		char a;
		char b;
	};

	static struct s the_s;

	testing_header("stddef.h");

	test_true(NULL == 0);

	test_int_equals(offsetof(struct s, b), (char*)&(the_s.b) - (char*)&the_s);

	testing_end();
}