Bump version to 19.1.0 (final)
[llvm-project.git] / libc / include / llvm-libc-macros / link-macros.h
blob5c8cadab8e71cb68b55b24f4f54249f91f60ca9d
1 //===-- Definition of macros to for extra dynamic linker functionality ----===//
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-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifdef __LP64__
10 #define ElfW(type) Elf64_ ## type
11 #else
12 #define ElfW(type) Elf32_ ## type
13 #endif