dtscreen: Change to ANSI function definitions

This commit is contained in:
Peter Howkins
2018-06-28 04:23:07 +01:00
parent 6f41ecc453
commit 97005a091e
2 changed files with 2 additions and 9 deletions

View File

@@ -46,13 +46,7 @@
#include <math.h>
void
hsb2rgb(H, S, B, r, g, b)
double H,
S,
B;
u_char *r,
*g,
*b;
hsb2rgb(double H, double S, double B, u_char *r, u_char *g, u_char *b)
{
int i;
double f;