fortify-headers

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

commit 1872b6a7e567a6f983b3db973ccddd0f9b045b34
parent 013d07a11c796651404a841db9179e3fda086b5f
Author: sin <sin@2f30.org>
Date:   Wed, 28 Jan 2015 16:31:19 +0000

Remove trailing semicolon

Diffstat:
Minclude/string.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/string.h b/include/string.h @@ -153,9 +153,9 @@ size_t __fortify_strlcpy(char *__restrict dest, const char *__restrict src, size #undef memset #define memset(dest, src, n) __fortify_memset(dest, src, n) #undef stpcpy -#define stpcpy(dest, src) __fortify_stpcpy(dest, src); +#define stpcpy(dest, src) __fortify_stpcpy(dest, src) #undef stpncpy -#define stpncpy(dest, src, n) __fortify_stpncpy(dest, src, n); +#define stpncpy(dest, src, n) __fortify_stpncpy(dest, src, n) #undef strcat #define strcat(dest, src) __fortify_strcat(dest, src) #undef strcpy