Add __extension__ mark to include_next to silence -pedantic

Signed-off-by: Steven Barth <steven@midlink.org>
This commit is contained in:
Steven Barth 2015-06-24 20:13:37 +02:00 committed by sin
parent 0825063aa6
commit 7fd984fcb5
8 changed files with 10 additions and 0 deletions

View File

@ -16,6 +16,7 @@
#ifndef _FORTIFY_POLL_H
#define _FORTIFY_POLL_H
__extension__
#include_next <poll.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0

View File

@ -16,6 +16,7 @@
#ifndef _FORTIFY_STDIO_H
#define _FORTIFY_STDIO_H
__extension__
#include_next <stdio.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0

View File

@ -16,9 +16,11 @@
#ifndef _FORTIFY_STDLIB_H
#define _FORTIFY_STDLIB_H
__extension__
#include_next <stdlib.h>
#if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
__extension__
#include_next <limits.h>
#endif

View File

@ -16,6 +16,7 @@
#ifndef _FORTIFY_STRING_H
#define _FORTIFY_STRING_H
__extension__
#include_next <string.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0

View File

@ -16,6 +16,7 @@
#ifndef _FORTIFY_SYS_SELECT_H
#define _FORTIFY_SYS_SELECT_H
__extension__
#include_next <sys/select.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0

View File

@ -16,6 +16,7 @@
#ifndef _FORTIFY_SYS_SOCKET_H
#define _FORTIFY_SYS_SOCKET_H
__extension__
#include_next <sys/socket.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0

View File

@ -16,6 +16,7 @@
#ifndef _FORTIFY_UNISTD_H
#define _FORTIFY_UNISTD_H
__extension__
#include_next <unistd.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0

View File

@ -16,7 +16,9 @@
#ifndef _FORTIFY_WCHAR_H
#define _FORTIFY_WCHAR_H
__extension__
#include_next <stdlib.h>
__extension__
#include_next <wchar.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0