forked from KolibriOS/kolibrios
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:
@@ -82,7 +82,6 @@
|
||||
#include "string/memmove.c"
|
||||
|
||||
#include "stdlib/calloc.c"
|
||||
#include "stdlib/lldiv.c"
|
||||
#include "stdlib/malloc.c"
|
||||
#include "stdlib/atoll.c"
|
||||
#include "stdlib/free.c"
|
||||
@@ -91,9 +90,7 @@
|
||||
#include "stdlib/atoi.c"
|
||||
#include "stdlib/labs.c"
|
||||
#include "stdlib/realloc.c"
|
||||
#include "stdlib/ldiv.c"
|
||||
#include "stdlib/abs.c"
|
||||
#include "stdlib/div.c"
|
||||
#include "stdlib/atol.c"
|
||||
#include "stdlib/itoa.c"
|
||||
#include "stdlib/strtol.c"
|
||||
|
@@ -1,6 +0,0 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
div_t div(int num, int den)
|
||||
{
|
||||
return (div_t){ num/den, num%den };
|
||||
}
|
@@ -1,6 +0,0 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
ldiv_t ldiv(long num, long den)
|
||||
{
|
||||
return (ldiv_t){ num/den, num%den };
|
||||
}
|
@@ -1,6 +0,0 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
lldiv_t lldiv(long long num, long long den)
|
||||
{
|
||||
return (lldiv_t){ num/den, num%den };
|
||||
}
|
@@ -49,14 +49,11 @@ atol
|
||||
atoll
|
||||
atof
|
||||
calloc
|
||||
div
|
||||
exit
|
||||
free
|
||||
itoa
|
||||
labs
|
||||
ldiv
|
||||
llabs
|
||||
lldiv
|
||||
malloc
|
||||
realloc
|
||||
strtol
|
||||
|
Reference in New Issue
Block a user