diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-02-13 10:45:26 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-02-13 10:46:52 +0100 |
commit | 6477e64a8d280689bafeaf5adfd8997b7a671771 (patch) | |
tree | b306271b91f0378aca6b77feda0174b307e87ffa /src/libstrongswan/utils/printf_hook/printf_hook_glibc.c | |
parent | 593251fcf6353d37fd21a73f54877ec512ae0cd1 (diff) | |
download | strongswan-6477e64a8d280689bafeaf5adfd8997b7a671771.tar.bz2 strongswan-6477e64a8d280689bafeaf5adfd8997b7a671771.tar.xz |
printf-hook-glibc: printf.h on FreeBSD 10 does not include stdargs.h
Diffstat (limited to 'src/libstrongswan/utils/printf_hook/printf_hook_glibc.c')
-rw-r--r-- | src/libstrongswan/utils/printf_hook/printf_hook_glibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/utils/printf_hook/printf_hook_glibc.c b/src/libstrongswan/utils/printf_hook/printf_hook_glibc.c index 8fd1aed4a..5efe1d990 100644 --- a/src/libstrongswan/utils/printf_hook/printf_hook_glibc.c +++ b/src/libstrongswan/utils/printf_hook/printf_hook_glibc.c @@ -19,10 +19,10 @@ #include <utils/utils.h> #include <utils/debug.h> -#include <printf.h> #include <stdio.h> #include <stdarg.h> #include <string.h> +#include <printf.h> typedef struct private_printf_hook_t private_printf_hook_t; typedef struct printf_hook_handler_t printf_hook_handler_t; |