diff options
Diffstat (limited to 'src/stdlib/ecvt.c')
-rw-r--r-- | src/stdlib/ecvt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/ecvt.c b/src/stdlib/ecvt.c index 797b664e..d95258da 100644 --- a/src/stdlib/ecvt.c +++ b/src/stdlib/ecvt.c @@ -18,3 +18,11 @@ char *ecvt(double x, int n, int *dp, int *sign) return buf; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |