25 lines · c
1//===-- Standard C header <sorting.h> --===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===---------------------------------------------------------------------===//8 9#ifndef _LLVM_LIBC_SORTING_H10#define _LLVM_LIBC_SORTING_H11 12#include "__llvm-libc-common.h"13 14__BEGIN_C_DECLS15 16void func_with_aliases(int) __NOEXCEPT;17void _func_with_aliases(int) __NOEXCEPT;18void __func_with_aliases(int) __NOEXCEPT;19 20void gunk(const char *) __NOEXCEPT;21 22__END_C_DECLS23 24#endif // _LLVM_LIBC_SORTING_H25