summaryrefslogtreecommitdiff
path: root/adhoc.cpp.proto
blob: e0fde30fe251e9d5ca4b1ae0c53d9d8280446fb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "filters.h"
#include "files.h"
#include "base64.h"
#include "misc.h"
#include "hex.h"
#include <iostream>

USING_NAMESPACE(CryptoPP)
USING_NAMESPACE(std)

#if GCC_DIAGNOSTIC_AWARE
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunused-variable"
#endif

extern int (*AdhocTest)(int argc, char *argv[]);

int MyAdhocTest(int argc, char *argv[])
{
	return 0;
}

static int s_i = (AdhocTest = &MyAdhocTest, 0);