| 1 |
– |
/* Copyright (c) 1993 Regents of the University of California */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* Simple median-cut color quantization based on colortab.c |
| 6 |
|
*/ |
| 37 |
|
#endif |
| 38 |
|
#endif |
| 39 |
|
|
| 40 |
+ |
static cut(), mktabent(), closest(), addneigh(), setclosest(); |
| 41 |
+ |
static int split(); |
| 42 |
+ |
static unsigned dist(); |
| 43 |
|
|
| 44 |
+ |
|
| 45 |
|
new_histo(n) /* clear our histogram */ |
| 46 |
|
int n; |
| 47 |
|
{ |
| 119 |
|
|
| 120 |
|
if (n != N) { /* get error propogation array */ |
| 121 |
|
if (N) { |
| 122 |
< |
free((char *)cerr); |
| 122 |
> |
free((void *)cerr); |
| 123 |
|
cerr = NULL; |
| 124 |
|
} |
| 125 |
|
if (n) |