summaryrefslogtreecommitdiff
path: root/tests/test_ppoll_dynamic.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ppoll_dynamic.c')
-rw-r--r--tests/test_ppoll_dynamic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_ppoll_dynamic.c b/tests/test_ppoll_dynamic.c
index 7b049d1..32ea522 100644
--- a/tests/test_ppoll_dynamic.c
+++ b/tests/test_ppoll_dynamic.c
@@ -4,6 +4,7 @@
4#include <poll.h> 4#include <poll.h>
5 5
6int main(int argc, char** argv) { 6int main(int argc, char** argv) {
7#if !defined(__clang__)
7 struct pollfd buffer[8] = {0}; 8 struct pollfd buffer[8] = {0};
8 9
9 CHK_FAIL_START 10 CHK_FAIL_START
@@ -11,5 +12,6 @@ int main(int argc, char** argv) {
11 CHK_FAIL_END 12 CHK_FAIL_END
12 13
13 puts((const char*)buffer); 14 puts((const char*)buffer);
15#endif
14 return ret; 16 return ret;
15} 17}