diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-06 19:32:34 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-06 19:32:34 -0500 |
commit | cb0dc1130277cab3a4d5bcc7b12dedde3de02e59 (patch) | |
tree | bbc10c4673d54bfc854dfee4ccb6cc1ac95c159f /stddef.c | |
parent | 4bb6e449a91732a77a205a21a6af248d677f12fb (diff) |
enable offsetof() test
Diffstat (limited to 'stddef.c')
-rw-r--r-- | stddef.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -16,9 +16,7 @@ void test_stddef_h(void) test_true(NULL == 0); - /* - test_int_eq(offsetof(struct s, b), 1); - */ + test_int_equals(offsetof(struct s, b), 1); testing_end(); } |