bugfix: 修复浮点数打印错误的bug

This commit is contained in:
fslongjin
2022-07-12 13:19:51 +08:00
parent 676260c537
commit 7670031b11
16 changed files with 235 additions and 35 deletions

View File

@ -1,6 +1,8 @@
#include <libc/stdio.h>
#include <libc/stdlib.h>
#include <libc/unistd.h>
#include <libc/time.h>
#include <libc/math.h>
void print_ascii_logo()
{
@ -26,11 +28,11 @@ int main()
{
// printf("Hello World!\n");
print_ascii_logo();
usleep(500000);
usleep(500000);
print_copyright();
// exit(0);
// while (1)
// ;
return 0;
}