27 lines · c
1//===-- BSD / GNU header <subdir/test.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_SUBDIR_TEST_H10#define _LLVM_LIBC_SUBDIR_TEST_H11 12#include "../__llvm-libc-common.h"13#include "../llvm-libc-types/type_a.h"14#include "../llvm-libc-types/type_b.h"15 16__BEGIN_C_DECLS17 18type_a func(type_b) __NOEXCEPT;19 20void gnufunc(type_a) __NOEXCEPT;21 22int *ptrfunc(void) __NOEXCEPT;23 24__END_C_DECLS25 26#endif // _LLVM_LIBC_SUBDIR_TEST_H27