diff options
author | arcadia-devtools <[email protected]> | 2022-03-01 22:49:23 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-03-01 22:49:23 +0300 |
commit | f1db7e1d2a6f1e911c41352aecb7897b8cc48d74 (patch) | |
tree | e551b29a4f1a5e46cb6f23b04e3192dcf5f9da32 /contrib/libs/cxxsupp/openmp/kmp_io.h | |
parent | 8de79fac61fafe1e9e559da116135cca3f5846d1 (diff) |
intermediate changes
ref:51d474bda1b99a2cf73ca7da0cd5398ef5683bf4
Diffstat (limited to 'contrib/libs/cxxsupp/openmp/kmp_io.h')
-rw-r--r-- | contrib/libs/cxxsupp/openmp/kmp_io.h | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/contrib/libs/cxxsupp/openmp/kmp_io.h b/contrib/libs/cxxsupp/openmp/kmp_io.h index 49afda59ee6..a0caa644eed 100644 --- a/contrib/libs/cxxsupp/openmp/kmp_io.h +++ b/contrib/libs/cxxsupp/openmp/kmp_io.h @@ -2,14 +2,17 @@ * kmp_io.h -- RTL IO header file. */ + //===----------------------------------------------------------------------===// // -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.txt for details. // //===----------------------------------------------------------------------===// + #ifndef KMP_IO_H #define KMP_IO_H @@ -18,21 +21,24 @@ extern "C" { #endif /* ------------------------------------------------------------------------ */ +/* ------------------------------------------------------------------------ */ -enum kmp_io { kmp_out = 0, kmp_err }; +enum kmp_io { + kmp_out = 0, + kmp_err +}; -extern kmp_bootstrap_lock_t __kmp_stdio_lock; /* Control stdio functions */ -extern kmp_bootstrap_lock_t - __kmp_console_lock; /* Control console initialization */ +extern kmp_bootstrap_lock_t __kmp_stdio_lock; /* Control stdio functions */ +extern kmp_bootstrap_lock_t __kmp_console_lock; /* Control console initialization */ -extern void __kmp_vprintf(enum kmp_io stream, char const *format, va_list ap); -extern void __kmp_printf(char const *format, ...); -extern void __kmp_printf_no_lock(char const *format, ...); -extern void __kmp_fprintf(enum kmp_io stream, char const *format, ...); -extern void __kmp_close_console(void); +extern void __kmp_vprintf( enum kmp_io __kmp_io, char const * format, va_list ap ); +extern void __kmp_printf( char const * format, ... ); +extern void __kmp_printf_no_lock( char const * format, ... ); +extern void __kmp_close_console( void ); #ifdef __cplusplus } #endif #endif /* KMP_IO_H */ + |