| 1 |
– |
/* Copyright (c) 1992 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 |
|
* flip picture file horizontally and/or vertically |
| 6 |
|
*/ |
| 11 |
|
#include <fcntl.h> |
| 12 |
|
#endif |
| 13 |
|
|
| 14 |
+ |
#include <time.h> |
| 15 |
+ |
|
| 16 |
|
#include "color.h" |
| 17 |
|
|
| 18 |
|
#include "resolu.h" |
| 30 |
|
|
| 31 |
|
char *progname; |
| 32 |
|
|
| 34 |
– |
extern char *malloc(); |
| 33 |
|
|
| 36 |
– |
|
| 34 |
|
int |
| 35 |
|
neworder() /* figure out new order from old */ |
| 36 |
|
{ |
| 135 |
|
} |
| 136 |
|
} |
| 137 |
|
scanpos[0] = ftell(fin); |
| 138 |
< |
free((char *)scanin); |
| 138 |
> |
free((void *)scanin); |
| 139 |
|
} |
| 140 |
|
|
| 141 |
|
|
| 169 |
|
exit(1); |
| 170 |
|
} |
| 171 |
|
} |
| 172 |
< |
free((char *)scanin); |
| 172 |
> |
free((void *)scanin); |
| 173 |
|
if (fhoriz) |
| 174 |
< |
free((char *)scanout); |
| 174 |
> |
free((void *)scanout); |
| 175 |
|
} |