123456789101112131415 |
- /****************************************************************************
- * Parser error 013: Range error - log10 [negative]
- *
- * Expect error on line:
- * printf("%.15g", LOG10(-100.0))
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- TIME_STEP = 1e-6
- ITERATIONS = 1
- printf("%.15g", LOG10(-100.0))
|