mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 12:28:44 +00:00
23 lines
206 B
C++
23 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
|