fortify-headers

standalone fortify-source implementation
git clone git://git.2f30.org/fortify-headers
Log | Files | Refs | README | LICENSE

commit 8604f138c55ab4904a2fd9b7edce2b688c70e6c0
parent 1fbf7a3a5e9c02cf992848002cfb88c3c7cc0212
Author: sin <sin@2f30.org>
Date:   Wed, 11 Mar 2015 09:26:11 +0000

Add ifdef guards for C++ code

Diffstat:
Minclude/poll.h | 8++++++++
Minclude/stdio.h | 8++++++++
Minclude/stdlib.h | 8++++++++
Minclude/string.h | 8++++++++
Minclude/strings.h | 8++++++++
Minclude/sys/select.h | 8++++++++
Minclude/sys/socket.h | 8++++++++
Minclude/unistd.h | 8++++++++
Minclude/wchar.h | 8++++++++
9 files changed, 72 insertions(+), 0 deletions(-)

diff --git a/include/poll.h b/include/poll.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) int __fortify_poll(struct pollfd *fds, nfds_t nfds, int timeout) @@ -38,6 +42,10 @@ __fortify_ppoll(struct pollfd *fds, nfds_t nfds, #define ppoll(fds, nfds, timeout, mask) __fortify_ppoll(fds, nfds, timeout, mask) #endif +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/stdio.h b/include/stdio.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) char * __fortify_fgets(char *s, int n, FILE *fp) @@ -104,6 +108,10 @@ __fortify_vsnprintf(char *s, size_t n, const char *fmt, __builtin_va_list ap) r; \ }) +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/stdlib.h b/include/stdlib.h @@ -9,6 +9,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) static inline __attribute__ ((always_inline)) char * @@ -32,6 +36,10 @@ __fortify_realpath(const char *path, char *resolved) #define realpath(path, resolved) __fortify_realpath(path, resolved) #endif +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/string.h b/include/string.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) void * __fortify_memcpy(void *dest, const void *src, size_t n) @@ -186,6 +190,10 @@ __fortify_strlcpy(char *dest, const char *src, size_t n) #define strlcpy(dest, src, n) __fortify_strlcpy(dest, src, n) #endif +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/strings.h b/include/strings.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_POSIX_SOURCE) \ || (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE+0 < 200809L) \ || (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE+0 < 700) @@ -36,6 +40,10 @@ __fortify_bzero(void *src, size_t n) #define bzero(src, n) __fortify_bzero(src, n) #endif +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/sys/select.h b/include/sys/select.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) int __fortify_FD_CLR(int fd, fd_set *set) @@ -32,6 +36,10 @@ __fortify_FD_SET(int fd, fd_set *set) #undef FD_SET #define FD_SET(fd, set) __fortify_FD_SET(fd, set) +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/sys/socket.h b/include/sys/socket.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) ssize_t __fortify_recv(int sockfd, void *buf, size_t n, int flags) @@ -60,6 +64,10 @@ __fortify_sendto(int sockfd, const void *buf, size_t n, int flags, #undef sendto #define sendto(sockfd, buf, n, flags, sa, salen) __fortify_sendto(sockfd, buf, n, flags, sa, salen) +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/unistd.h b/include/unistd.h @@ -5,6 +5,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) size_t __fortify_confstr(int name, char *buf, size_t len) @@ -168,6 +172,10 @@ __fortify_write(int fd, const void *buf, size_t n) #undef write #define write(fd, buf, n) __fortify_write(fd, buf, n) +#ifdef __cplusplus +} +#endif + #endif #endif diff --git a/include/wchar.h b/include/wchar.h @@ -6,6 +6,10 @@ #if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0 +#ifdef __cplusplus +extern "C" { +#endif + static inline __attribute__ ((always_inline)) wchar_t * __fortify_fgetws(wchar_t *s, int n, FILE *fp) @@ -249,6 +253,10 @@ __fortify_wmemset(wchar_t *s, wchar_t c, size_t n) #undef wmemset #define wmemset(s, c, n) __fortify_wmemset(s, c, n) +#ifdef __cplusplus +} +#endif + #endif #endif