diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-03-29 21:31:58 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-03-29 21:31:58 -0400 |
commit | 0c183e963d8cd1088594be693d0676aafba6a552 (patch) | |
tree | bcedc56412a7f27f8d71c19754c9066e17d6f035 /src/test | |
parent | 61d1a5a25c6f468aefe24f8033b779f140aab6dc (diff) |
test-sizeof: add some struct-timespec related fields
Might help with #5264.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-sizeof.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test-sizeof.c b/src/test/test-sizeof.c index 7c8eac8242..36389b7710 100644 --- a/src/test/test-sizeof.c +++ b/src/test/test-sizeof.c @@ -40,6 +40,8 @@ int main(void) { info(unsigned); info(long unsigned); info(long long unsigned); + info(__syscall_ulong_t); + info(__syscall_slong_t); info(float); info(double); @@ -49,6 +51,7 @@ int main(void) { info(ssize_t); info(time_t); info(usec_t); + info(__time_t); return 0; } |