printjob.c (5e127035e4acc2730cf0a952ecbc81c5787d6760) | printjob.c (055c90456eced7341ece07074c0655dae8b92ce1) |
---|---|
1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 24 unchanged lines hidden (view full) --- 33 */ 34 35#ifndef lint 36static const char copyright[] = 37"@(#) Copyright (c) 1983, 1993\n\ 38 The Regents of the University of California. All rights reserved.\n"; 39#endif /* not lint */ 40 | 1/* 2 * Copyright (c) 1983, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: --- 24 unchanged lines hidden (view full) --- 33 */ 34 35#ifndef lint 36static const char copyright[] = 37"@(#) Copyright (c) 1983, 1993\n\ 38 The Regents of the University of California. All rights reserved.\n"; 39#endif /* not lint */ 40 |
41#ifndef lint 42/* | 41#if 0 |
43static char sccsid[] = "@(#)printjob.c 8.7 (Berkeley) 5/10/95"; | 42static char sccsid[] = "@(#)printjob.c 8.7 (Berkeley) 5/10/95"; |
44*/ 45static const char rcsid[] = 46 "$FreeBSD$"; 47#endif /* not lint */ | 43#endif |
48 | 44 |
45#include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ 46__FBSDID("$FreeBSD$"); |
|
49 50/* 51 * printjob -- print jobs in the queue. 52 * 53 * NOTE: the lock file is used to pass information to lpq and lprm. 54 * it does not need to be removed because file locks are dynamic. 55 */ 56 --- 1836 unchanged lines hidden --- | 47 48/* 49 * printjob -- print jobs in the queue. 50 * 51 * NOTE: the lock file is used to pass information to lpq and lprm. 52 * it does not need to be removed because file locks are dynamic. 53 */ 54 --- 1836 unchanged lines hidden --- |