omit warnings
This commit is contained in:
parent
a7864c8f61
commit
f58d7a5001
|
|
@ -731,7 +731,6 @@ int WIN_Arc(int x0, int y0, int radius, double theta, double delta_theta)
|
||||||
int xs, ys, xe, ye;
|
int xs, ys, xe, ye;
|
||||||
int yb;
|
int yb;
|
||||||
int direction;
|
int direction;
|
||||||
double temp;
|
|
||||||
double r;
|
double r;
|
||||||
double dx0;
|
double dx0;
|
||||||
double dy0;
|
double dy0;
|
||||||
|
|
|
||||||
|
|
@ -354,7 +354,6 @@ int WPRINT_Arc(int x0, int y0, int radius, double theta, double delta_theta)
|
||||||
int yb;
|
int yb;
|
||||||
int direction;
|
int direction;
|
||||||
int ColIndex;
|
int ColIndex;
|
||||||
double temp;
|
|
||||||
double r;
|
double r;
|
||||||
double dx0;
|
double dx0;
|
||||||
double dy0;
|
double dy0;
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,11 @@ static void *tcalloc(size_t a, size_t b) {
|
||||||
return tmalloc(a*b); /* FIXME, tcalloc must zero !?!? */
|
return tmalloc(a*b); /* FIXME, tcalloc must zero !?!? */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_LIBGC
|
||||||
static void no_free(void *p) {
|
static void no_free(void *p) {
|
||||||
U(p);
|
U(p);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static FILE * no_file(void) {
|
static FILE * no_file(void) {
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue