diff options
Diffstat (limited to 'libexec/uucpd/uucpd.c')
-rw-r--r-- | libexec/uucpd/uucpd.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libexec/uucpd/uucpd.c b/libexec/uucpd/uucpd.c index f95b388..4975100 100644 --- a/libexec/uucpd/uucpd.c +++ b/libexec/uucpd/uucpd.c @@ -32,18 +32,20 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $Id: uucpd.c,v 1.12 1997/04/08 12:32:17 davidn Exp $ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1985, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)uucpd.c 8.1 (Berkeley) 6/4/93"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* not lint */ /* @@ -58,18 +60,18 @@ static char sccsid[] = "@(#)uucpd.c 8.1 (Berkeley) 6/4/93"; #include <sys/param.h> #include <netinet/in.h> #include <arpa/inet.h> -#include <netdb.h> -#include <signal.h> +#include <errno.h> #include <fcntl.h> -#include <time.h> +#include <netdb.h> #include <pwd.h> -#include <unistd.h> -#include <errno.h> +#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <utmp.h> #include <syslog.h> +#include <time.h> +#include <unistd.h> +#include <utmp.h> #include <sys/param.h> #include "pathnames.h" |