diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-31 08:58:49 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-05-31 08:58:49 +0000 |
commit | 5beefe36327bbfeb29ba5841b8afac474e46cf0d (patch) | |
tree | 5b0543ff98b3164a40dfcdd553c9a119ebb5b1f3 /usr.bin/cvs/log.c | |
parent | 7e9436fcf71abf14289b42e70a59c34d9a1cf105 (diff) |
headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;
Diffstat (limited to 'usr.bin/cvs/log.c')
-rw-r--r-- | usr.bin/cvs/log.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.bin/cvs/log.c b/usr.bin/cvs/log.c index a15016c685d..57697f21ffb 100644 --- a/usr.bin/cvs/log.c +++ b/usr.bin/cvs/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.15 2005/04/06 21:42:32 jfb Exp $ */ +/* $OpenBSD: log.c,v 1.16 2005/05/31 08:58:48 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -28,14 +28,13 @@ #include <errno.h> #include <stdio.h> -#include <string.h> #include <stdlib.h> -#include <unistd.h> -#include <stdarg.h> +#include <string.h> #include <syslog.h> +#include <unistd.h> -#include "log.h" #include "cvs.h" +#include "log.h" extern char *__progname; |