1
0
mirror of https://github.com/adtools/clib2.git synced 2026-05-08 22:24:58 +00:00

Only builds with GCC now

This commit is contained in:
obarthel
2016-12-04 11:12:42 +01:00
parent bc3e19abe5
commit 5e0fa78d61

View File

@@ -37,6 +37,10 @@
/****************************************************************************/
#if defined(__GNUC__) || (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L))
/****************************************************************************/
lldiv_t
lldiv(long long n,long long d)
{
@@ -49,3 +53,7 @@ lldiv(long long n,long long d)
return(result);
}
/****************************************************************************/
#endif