aboutsummaryrefslogtreecommitdiff
path: root/openmp/runtime/src/test-touch.c
diff options
context:
space:
mode:
Diffstat (limited to 'openmp/runtime/src/test-touch.c')
-rw-r--r--openmp/runtime/src/test-touch.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/openmp/runtime/src/test-touch.c b/openmp/runtime/src/test-touch.c
index 71e05e76683d..62e81fe0ed49 100644
--- a/openmp/runtime/src/test-touch.c
+++ b/openmp/runtime/src/test-touch.c
@@ -1,6 +1,5 @@
// test-touch.c //
-
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
@@ -9,22 +8,21 @@
//
//===----------------------------------------------------------------------===//
-
#ifdef __cplusplus
extern "C" {
#endif
extern double omp_get_wtime();
-extern int omp_get_num_threads();
-extern int omp_get_max_threads();
+extern int omp_get_num_threads();
+extern int omp_get_max_threads();
#ifdef __cplusplus
}
#endif
int main() {
- omp_get_wtime();
- omp_get_num_threads();
- omp_get_max_threads();
- return 0;
+ omp_get_wtime();
+ omp_get_num_threads();
+ omp_get_max_threads();
+ return 0;
}
// end of file //