| 9 |
|
|
| 10 |
|
#include "copyright.h" |
| 11 |
|
|
| 12 |
– |
#include <stdio.h> |
| 12 |
|
#include <stdlib.h> |
| 13 |
< |
#include <time.h> |
| 13 |
> |
#include <stdio.h> |
| 14 |
|
|
| 15 |
|
#include "resolu.h" |
| 16 |
|
|
| 63 |
|
register RESOLU *rp; |
| 64 |
|
{ |
| 65 |
|
if (rp->rt&YMAJOR) |
| 66 |
< |
sprintf(buf, "%cY %d %cX %d\n", |
| 66 |
> |
sprintf(buf, "%cY %-8d %cX %-8d\n", |
| 67 |
|
rp->rt&YDECR ? '-' : '+', rp->yr, |
| 68 |
|
rp->rt&XDECR ? '-' : '+', rp->xr); |
| 69 |
|
else |
| 70 |
< |
sprintf(buf, "%cX %d %cY %d\n", |
| 70 |
> |
sprintf(buf, "%cX %-8d %cY %-8d\n", |
| 71 |
|
rp->rt&XDECR ? '-' : '+', rp->xr, |
| 72 |
|
rp->rt&YDECR ? '-' : '+', rp->yr); |
| 73 |
|
return(buf); |