blob: 668b5e3e9dec998183d8465ddf629a3b6d47c93b (
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
26
27
28
|
//===-- klee-replay.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_REPLAY_H__
#define __KLEE_REPLAY_H__
#define _LARGEFILE64_SOURCE
#define _FILE_OFFSET_BITS 64
// FIXME: This is a hack.
#include "../../runtime/POSIX/fd.h"
#include <sys/time.h>
void replay_create_files(exe_file_system_t *exe_fs);
void process_status(int status,
time_t elapsed,
const char *pfx)
__attribute__((noreturn));
#endif
|