mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 12:22:35 +03:00
6 lines
94 B
C
6 lines
94 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
ldiv_t ldiv(long num, long den)
|
||
|
{
|
||
|
return (ldiv_t){ num/den, num%den };
|
||
|
}
|