diff options
Diffstat (limited to 'src/stdlib/lldiv.c')
-rw-r--r-- | src/stdlib/lldiv.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/lldiv.c b/src/stdlib/lldiv.c index 7aaf7a0e..6e802c2a 100644 --- a/src/stdlib/lldiv.c +++ b/src/stdlib/lldiv.c @@ -4,3 +4,11 @@ lldiv_t lldiv(long long num, long long den) { return (lldiv_t){ num/den, num%den }; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |