mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
728f124678
Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
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 };
|
|
} |