FS-5956: fix __sputc included twice due to stdio.h inlining issue

This commit is contained in:
Michael Jerris 2014-01-29 11:39:03 -05:00
parent 5be81aef74
commit 8a01410847
4 changed files with 10 additions and 1 deletions

View File

@ -46,6 +46,10 @@
#define MATH_H
#include "datatypes.h"
#ifndef SRTP_KERNEL
# include <stdio.h>
#endif
unsigned char
v32_weight(v32_t a);

View File

@ -53,7 +53,6 @@
#include <stdarg.h>
#ifndef SRTP_KERNEL
# include <stdio.h>
# include <string.h>
# include <time.h>
# ifdef HAVE_NETINET_IN_H

View File

@ -46,6 +46,9 @@
#include "alloc.h"
#include "crypto_kernel.h"
#ifndef SRTP_KERNEL
# include <stdio.h>
#endif
/* the debug module for the crypto_kernel */

View File

@ -43,6 +43,9 @@
*/
#include "err.h"
#ifndef SRTP_KERNEL
# include <stdio.h>
#endif
#ifdef ERR_REPORTING_SYSLOG
# ifdef HAVE_SYSLOG_H