summaryrefslogtreecommitdiff
path: root/stddef.c
blob: 069225e894bed5b944b2767f18c17a038a437478 (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"

static ptrdiff_t ptrdiff;
static size_t size;
static wchar_t wchar;

void test_stddef_h(void)
{
	struct s {
		char a;
		char b;
	};

	testing_header("stddef.h");

	test_true(NULL == 0);

	/*
	test_int_eq(offsetof(struct s, b), 1);
	*/

	testing_end();
}