From 88e38fa1483891f273f063f92ef71a5c33fe5406 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 27 Sep 2006 10:58:14 +0000 Subject: We don't actually have a stdio.h header file. Our printf() functions are defined in vsprintf.h. (This may change, since vsprintf.h is a non-standard name, but for now it's the one to use.) There should be no need to include vsprintf.h just for DBG() statements, since include/compiler.h forces it in for a debug build anyway. --- src/crypto/framework.c | 1 - src/crypto/ssl.c | 1 - 2 files changed, 2 deletions(-) (limited to 'src/crypto') diff --git a/src/crypto/framework.c b/src/crypto/framework.c index c09490d3..0da2cbe3 100644 --- a/src/crypto/framework.c +++ b/src/crypto/framework.c @@ -1,7 +1,6 @@ /* mcb - this file breaks the build process; temporarily deactivating */ #if 0 -#include #include #include #include diff --git a/src/crypto/ssl.c b/src/crypto/ssl.c index 823c926a..00651bd4 100644 --- a/src/crypto/ssl.c +++ b/src/crypto/ssl.c @@ -1,4 +1,3 @@ -#include #include "ssl.h" #include "ssl_constructs.h" #include // for bcopy() -- cgit