brintos

brintos / llvm-project-archived public Read only

0
0
Text · 748 B · 47175f2 Raw
27 lines · c
1//===-- sanitizer_glibc_version.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// This file is a part of Sanitizer common code.10//11//===----------------------------------------------------------------------===//12 13#ifndef SANITIZER_GLIBC_VERSION_H14#define SANITIZER_GLIBC_VERSION_H15 16#include "sanitizer_platform.h"17 18#if SANITIZER_LINUX || SANITIZER_FUCHSIA19#include <features.h>20#endif21 22#ifndef __GLIBC_PREREQ23#define __GLIBC_PREREQ(x, y) 024#endif25 26#endif27