mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 00:46:05 +00:00

Refer: 7.3.1 from [ISO SPEC](https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3220.pdf) I have added complex variants of F16 and F128 in libc doc but have omitted support for them since we will have to first investigate how their support matrix for clang and gcc looks like, and then add header guards for them accordingly. Planning to add them in follow up PRs once this gets landed.
18 lines
551 B
Modula-2
18 lines
551 B
Modula-2
//===-- C standard library header complex.h -------------------------------===//
|
|
//
|
|
// 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_COMPLEX_H
|
|
#define LLVM_LIBC_COMPLEX_H
|
|
|
|
#include "__llvm-libc-common.h"
|
|
#include "llvm-libc-macros/complex-macros.h"
|
|
|
|
%%public_api()
|
|
|
|
#endif // LLVM_LIBC_COMPLEX_H
|