about summary refs log tree commit diff homepage
path: root/include/klee/Support/PrintVersion.h
blob: f4999debc21a4ddb9b5568872b7a6972248c4c9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//===-- PrintVersion.h ------------------------------------------*- C++ -*-===//
//
//                     The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef KLEE_PRINTVERSION_H
#define KLEE_PRINTVERSION_H

#include "klee/Support/CompilerWarning.h"
DISABLE_WARNING_PUSH
DISABLE_WARNING_DEPRECATED_DECLARATIONS
#include "llvm/Support/raw_ostream.h"
DISABLE_WARNING_POP

#include "klee/Config/Version.h"

namespace klee {
  void printVersion(llvm::raw_ostream &OS);
}

#endif /* KLEE_PRINTVERSION_H */