Fixed some compiler warnings in lcc...mostly "long double" stuff.

This commit is contained in:
Ryan C. Gordon 2005-11-28 09:53:09 +00:00
parent 807ba08558
commit 4517e7a34b
3 changed files with 6 additions and 6 deletions

View file

@ -81,7 +81,7 @@ typedef struct table *Table;
typedef union value {
long i;
unsigned long u;
long double d;
double d;
void *p;
void (*g)(void);
} Value;