Get rid of mostly dead code

This commit is contained in:
libretroadmin
2022-06-20 06:07:40 +02:00
parent c3d84f5349
commit 6a31522981
14 changed files with 5 additions and 170 deletions

View File

@@ -1,24 +0,0 @@
#include <stdio.h>
#define MAX 512
void main(void)
{
char buf[256];
int count=0;
while(fgets(buf,256,stdin)>0)
{
double p;
if(sscanf(buf,"%lf",&p)==1)
{
p*=65536*16;
printf("%ld,\n",(long)p);
count++;
if(count==MAX) break;
}
}
}