mirror of
https://github.com/Z3Prover/z3
synced 2025-07-11 23:16:40 +00:00
22 lines
206 B
C++
22 lines
206 B
C++
|
|
/*++
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
|
|
--*/
|
|
|
|
|
|
#include "util/timeout.h"
|
|
#include "util/trace.h"
|
|
|
|
#ifdef _WINDOWS
|
|
|
|
#include <windows.h>
|
|
|
|
void tst_timeout() {
|
|
}
|
|
|
|
#else
|
|
void tst_timeout() {
|
|
}
|
|
|
|
#endif
|