updated .c files to include:

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

Just need to finish cpp files now :)

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-25 12:02:15 +00:00
parent b9a19f1ea7
commit d0e346d544
251 changed files with 1028 additions and 79 deletions

View File

@@ -35,13 +35,14 @@
#include <stdlib.h>
#include "GEN_messaging.h"
#include "zlib.h"
#include "BLO_writeStreamGlue.h"
#include "BLO_dumpFromMemory.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int
BLO_dumpFromMemory(
unsigned char *data,

View File

@@ -36,6 +36,10 @@
#include "BLO_keyStore.h"
#include "BLO_getPubKey.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int
getPubKey(byte *dataStreamPubKey,
int dataStreamPubKeyLen,

View File

@@ -37,6 +37,10 @@
#include "BLO_writeStreamGlue.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct streamGlueControlStruct *
streamGlueControlConstructor(
void)

View File

@@ -36,18 +36,18 @@
#include <assert.h>
#include "zlib.h"
#include "GEN_messaging.h"
#include "BLO_writeStreamGlue.h"
#include "BLO_dumpFromMemory.h"
#include "BLO_writeblenfile.h"
#include "BLO_deflate.h"
#include "BLO_encrypt.h"
#include "BLO_sign.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* streamGlueWrite does not really stream; it buffers all data it gets
* because it needs everything to create the header, which is in front

View File

@@ -35,6 +35,10 @@
#include "blenkey.h" // for byte ... duh this needs change !
#include "BLO_getPubKey.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int
getPubKey(byte *dataStreamPubKey,
int dataStreamPubKeyLen,

View File

@@ -35,6 +35,10 @@
#include "BLO_keyStore.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void
keyStoreConstructor(
UserStruct *keyUserStruct,

View File

@@ -32,11 +32,13 @@
*/
#include <stdio.h>
#include "GEN_messaging.h"
#include "BLO_writeStreamGlue.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct streamGlueControlStruct *
streamGlueControlConstructor(
void)

View File

@@ -36,6 +36,10 @@
#include "GEN_messaging.h"
#include "BLO_writeStreamGlue.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int
writeStreamGlue(
struct streamGlueControlStruct *streamGlueControl,

View File

@@ -48,6 +48,10 @@
#include "BLO_writeStreamGlue.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef _WIN32
#define O_BINARY 0
#endif

View File

@@ -35,6 +35,10 @@
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int main (int argc, char *argv[])
{
int verbose = 0;