1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 16:29:32 +00:00

cosmetics

This commit is contained in:
mrdudz 2023-08-28 02:16:35 +02:00
parent b7ce973a3f
commit 36ea0cc90e

View File

@ -1,13 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
//#include <conio.h> // for cgetc
#include <_float.h>
char buf[100];
/*
*/
// quick check to see if printing float value works
void constants(void)
{
@ -28,7 +25,7 @@ void constants(void)
printf(" 1.0 %15s\n", _ftostr(buf, 1.0f));
printf(" 10.0 %15s\n", _ftostr(buf, 10.0f));
printf(" 100.0 %15s\n", _ftostr(buf, 100.0f));
printf("<key>\n");
printf("<key>\n");
// cgetc();
}