xref: /third_party/musl/src/stdlib/imaxdiv.c
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/musl/src/stdlib/
1570af302Sopenharmony_ci#include <inttypes.h>
2570af302Sopenharmony_ci
3570af302Sopenharmony_ciimaxdiv_t imaxdiv(intmax_t num, intmax_t den)
4570af302Sopenharmony_ci{
5570af302Sopenharmony_ci	return (imaxdiv_t){ num/den, num%den };
6570af302Sopenharmony_ci}
7

Indexes created Thu Nov 07 10:32:03 CST 2024