1 |
– |
/* Copyright (c) 1991 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 |
|
* mt160r.c - program to dump pixel file to Mannesman-Tally 160. |
6 |
|
* |
8 |
|
*/ |
9 |
|
|
10 |
|
#include <stdio.h> |
11 |
+ |
#include <time.h> |
12 |
|
|
13 |
+ |
#include "platform.h" |
14 |
|
#include "color.h" |
15 |
|
#include "resolu.h" |
16 |
|
|
17 |
< |
#define NCOLS 880 /* for wide carriage */ |
17 |
> |
#define NCOLS 880 /* for wide carriage */ |
18 |
|
|
19 |
|
|
20 |
|
main(argc, argv) |
23 |
|
{ |
24 |
|
int i; |
25 |
|
int status = 0; |
26 |
< |
|
26 |
> |
SET_DEFAULT_BINARY(); |
27 |
> |
SET_FILE_BINARY(stdin); |
28 |
> |
SET_FILE_BINARY(stdout); |
29 |
|
if (argc < 2) |
30 |
|
status += printp(NULL) == -1; |
31 |
|
else |
42 |
|
int xres, yres; |
43 |
|
COLR scanline[NCOLS]; |
44 |
|
int i; |
45 |
< |
|
45 |
> |
|
46 |
|
if (fname == NULL) { |
47 |
|
input = stdin; |
48 |
|
fname = "<stdin>"; |
111 |
|
} |
112 |
|
putchar('\r'); |
113 |
|
putchar('\n'); |
114 |
+ |
fflush(stdout); |
115 |
|
} |
116 |
|
} |
117 |
|
|