|
|
| version 1.2, 2003/06/17 04:29:56 | version 1.3, 2004/03/22 22:32:51 |
|---|---|
| Line 34 | Line 34 |
| * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved. | * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved. |
| * @(#)lptest.c 8.1 (Berkeley) 6/6/93 | * @(#)lptest.c 8.1 (Berkeley) 6/6/93 |
| * $FreeBSD: src/usr.sbin/lpr/lptest/lptest.c,v 1.2.8.2 2001/10/13 18:52:36 gad Exp $ | * $FreeBSD: src/usr.sbin/lpr/lptest/lptest.c,v 1.2.8.2 2001/10/13 18:52:36 gad Exp $ |
| * $DragonFly: src/usr.sbin/lpr/lptest/lptest.c,v 1.1 2003/06/16 07:25:39 dillon Exp $ | * $DragonFly$ |
| */ | */ |
| #include <stdlib.h> | #include <stdlib.h> |
| Line 47 int | Line 47 int |
| main(int argc, char **argv) | main(int argc, char **argv) |
| { | { |
| int len, count; | int len, count; |
| register int i, j, fc, nc; | int i, j, fc, nc; |
| char outbuf[BUFSIZ]; | char outbuf[BUFSIZ]; |
| setbuf(stdout, outbuf); | setbuf(stdout, outbuf); |
| Line 71 main(int argc, char **argv) | Line 71 main(int argc, char **argv) |
| } | } |
| putchar('\n'); | putchar('\n'); |
| } | } |
| (void) fflush(stdout); | fflush(stdout); |
| exit(0); | exit(0); |
| } | } |