1 /* Copyright (c) 1995 Cygnus Support
3 * The authors hereby grant permission to use, copy, modify, distribute,
4 * and license this software and its documentation for any purpose, provided
5 * that existing copyright notices are retained in all copies and that this
6 * notice is included verbatim in any distributions. No written agreement,
7 * license, or royalty fee is required for any of the authorized uses.
8 * Modifications to this software may be copyrighted by their authors
9 * and need not follow the licensing terms described here, provided that
10 * the new terms are clearly indicated on the first page of each file where
13 extern int led_putnum();
14 extern char putDebugChar(),print(),putnum();
30 iprintf ("Print integer, result = %d\n", c2
);
34 printf ("Print float, result with 'f' = %f\n", c1
);
35 printf ("Print float, result with 'e' = %e\n", c1
);
36 printf ("Print float, result with 'E' = %E\n", c1
);
37 printf ("Print float, result with 'g' = %g\n", c1
);
38 printf ("Print float, result with 'G' = %G\n", c1
);