brintos

brintos / llvm-project-archived public Read only

0
0
Text · 726 B · 605d492 Raw
23 lines · c
1//===-- Implementation header of __libc_fini_array ------------------------===//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#include "hdr/stdint_proxy.h"10#include "src/__support/macros/config.h"11 12// NOTE: The namespace is necessary here to set the correct symbol visibility.13namespace LIBC_NAMESPACE_DECL {14 15extern "C" {16extern uintptr_t __fini_array_start[];17extern uintptr_t __fini_array_end[];18 19void __libc_fini_array(void);20} // extern "C"21 22} // namespace LIBC_NAMESPACE_DECL23