brintos

brintos / llvm-project-archived public Read only

0
0
Text · 532 B · 011c869 Raw
19 lines · c
1//===--- system-other.h - Stub header for tests -----------------*- C++ -*-===//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 _SYSTEM_OTHER_H_10#define _SYSTEM_OTHER_H_11 12// Special system calls.13 14#if __STDC_VERSION__ < 202311L15void other_call();16#endif17 18#endif // _SYSTEM_OTHER_H_19