/
GitCaptain
/
llvm-project
Обзор
Документация
Войти
/
GitCaptain
/
llvm-project
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
fix-tests
libc/src/stdlib/div.h
20 строк
578 B
Siva Chandra Reddy
[libc] Add implementations of div, ldiv, lldiv and imaxdiv.
20 сен 2021, 07:51
20 сен 2021, 07:51
74670e7
Код
Авторство
О чём код?
//===-- Implementation header for div ---------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// #include <stdlib.h> #ifndef LLVM_LIBC_SRC_STDLIB_DIV_H #define LLVM_LIBC_SRC_STDLIB_DIV_H namespace __llvm_libc { div_t div(int x, int y); } // namespace __llvm_libc #endif // LLVM_LIBC_SRC_STDLIB_DIV_H