CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2017-13861/liboffsetfinder64/all_img4tool.h
Views: 11784
1
//
2
// all.h
3
// img4tool
4
//
5
// Created by tihmstar on 15.06.16.
6
// Copyright © 2016 tihmstar. All rights reserved.
7
//
8
9
#ifndef all_h
10
#define all_h
11
12
#define error(a ...) printf("[Error] %s: ",__func__),printf(a)
13
#define warning(a ...) printf("[Warning] %s: ",__func__),printf(a)
14
15
#ifdef DEBUG //this is for developing with Xcode
16
#define IMG4TOOL_VERSION_COMMIT_COUNT "Debug"
17
#define IMG4TOOL_VERSION_COMMIT_SHA "Build: " __DATE__ " " __TIME__
18
#define HAVE_LIBCOMPRESSION
19
#else
20
//#include <config.h>
21
#define IMG4TOOL_NOLZFSE
22
#define IMG4TOOL_NOOPENSSL
23
#endif
24
25
#endif /* all_h */
26
27