blob: 6ce529ae23aaa1cd0bb0389f3e581bd0037a613c [file] [log] [blame]
Jim Cownie5e8470a2013-09-27 10:38:44 +00001// test-touch.c //
2
3
4//===----------------------------------------------------------------------===//
5//
6// The LLVM Compiler Infrastructure
7//
8// This file is dual licensed under the MIT and the University of Illinois Open
9// Source Licenses. See LICENSE.txt for details.
10//
11//===----------------------------------------------------------------------===//
12
13
Jim Cownie4cc4bb42014-10-07 16:25:50 +000014#ifdef __cplusplus
15extern "C" {
16#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +000017extern double omp_get_wtime();
18extern int omp_get_num_threads();
19extern int omp_get_max_threads();
Jim Cownie4cc4bb42014-10-07 16:25:50 +000020#ifdef __cplusplus
21}
22#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +000023
24int main() {
25 omp_get_wtime();
26 omp_get_num_threads();
27 omp_get_max_threads();
28 return 0;
29}
30
31// end of file //