recvjob.c (16d8455dcca2a0baeda299a571ee469b01955901) | recvjob.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#if 0 43static char sccsid[] = "@(#)recvjob.c 8.2 (Berkeley) 4/27/95"; 44#endif | 41#if 0 42static char sccsid[] = "@(#)recvjob.c 8.2 (Berkeley) 4/27/95"; 43#endif |
45static const char rcsid[] = 46 "$FreeBSD$"; 47#endif /* not lint */ | |
48 | 44 |
45#include "lp.cdefs.h" /* A cross-platform version of <sys/cdefs.h> */ 46__FBSDID("$FreeBSD$"); 47 |
|
49/* 50 * Receive printer jobs from the network, queue them and 51 * start the printer daemon. 52 */ 53#include <sys/param.h> 54#include <sys/mount.h> 55#include <sys/stat.h> 56 --- 347 unchanged lines hidden --- | 48/* 49 * Receive printer jobs from the network, queue them and 50 * start the printer daemon. 51 */ 52#include <sys/param.h> 53#include <sys/mount.h> 54#include <sys/stat.h> 55 --- 347 unchanged lines hidden --- |