//===-- Standard C header --===// // // 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 // //===---------------------------------------------------------------------===// #ifndef _LLVM_LIBC_SORTING_H #define _LLVM_LIBC_SORTING_H #include "__llvm-libc-common.h" __BEGIN_C_DECLS void func_with_aliases(int) __NOEXCEPT; void _func_with_aliases(int) __NOEXCEPT; void __func_with_aliases(int) __NOEXCEPT; void gunk(const char *) __NOEXCEPT; __END_C_DECLS #endif // _LLVM_LIBC_SORTING_H