libc.obj: Fixed div, ldiv, lldiv ( problem with the compatibility of returned structures in functions between tcc and gcc) thanks to Boppan).

git-svn-id: svn://kolibrios.org@9233 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat
2021-11-02 21:29:04 +00:00
parent 3bd9001d45
commit 82ddf447d5
7 changed files with 28 additions and 30 deletions

View File

@@ -1,6 +0,0 @@
#include <stdlib.h>
div_t div(int num, int den)
{
return (div_t){ num/den, num%den };
}

View File

@@ -1,6 +0,0 @@
#include <stdlib.h>
ldiv_t ldiv(long num, long den)
{
return (ldiv_t){ num/den, num%den };
}

View File

@@ -1,6 +0,0 @@
#include <stdlib.h>
lldiv_t lldiv(long long num, long long den)
{
return (lldiv_t){ num/den, num%den };
}