summaryrefslogtreecommitdiff
path: root/main/ast_expr2.y
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2016-06-02 22:53:39 +0300
committerTimo Teräs <timo.teras@iki.fi>2016-06-02 22:53:39 +0300
commit9c1d95e87358b17aec9fbb0a13c31b7bb9350450 (patch)
treeed1135a113d094ad3a74d077e6f10b771fa7765e /main/ast_expr2.y
parent48843a107d050eff2e2c7078078ffee4e782a81b (diff)
Fix #include poll.h and sys/cdefs.h
POSIX defines poll.h, sys/poll.h should not be used at is c-library internal header which may or may not exist. Notable in musl it generates warning of being incorrect. And add explict include of sys/cdefs.h where needed. Change-Id: I142930df53fe7585a06b854b6faddc5301e024be
Diffstat (limited to 'main/ast_expr2.y')
-rw-r--r--main/ast_expr2.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/ast_expr2.y b/main/ast_expr2.y
index 762e83d84..df87bcc7f 100644
--- a/main/ast_expr2.y
+++ b/main/ast_expr2.y
@@ -15,6 +15,7 @@
#define ASTMM_LIBC ASTMM_REDIRECT
#include "asterisk.h"
+#include <sys/cdefs.h>
#include <sys/types.h>
#include <stdio.h>