diff options
author | 2005-05-31 08:58:47 +0000 | |
---|---|---|
committer | 2005-05-31 08:58:47 +0000 | |
commit | 9225b0cabd2bb268c53d45a280478779b86ee7bb (patch) | |
tree | 4fecbe866516d502169b3c4413752f842493db38 /usr.bin/cvs/annotate.c | |
parent | remove LP_ERROR log priority level and rather use LP_ERR as they are both (diff) | |
download | wireguard-openbsd-9225b0cabd2bb268c53d45a280478779b86ee7bb.tar.xz wireguard-openbsd-9225b0cabd2bb268c53d45a280478779b86ee7bb.zip |
headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;
Diffstat (limited to 'usr.bin/cvs/annotate.c')
-rw-r--r-- | usr.bin/cvs/annotate.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/cvs/annotate.c b/usr.bin/cvs/annotate.c index a349a196404..fd1730fda42 100644 --- a/usr.bin/cvs/annotate.c +++ b/usr.bin/cvs/annotate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: annotate.c,v 1.16 2005/05/30 08:27:03 xsa Exp $ */ +/* $OpenBSD: annotate.c,v 1.17 2005/05/31 08:58:47 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -28,14 +28,13 @@ #include <sys/stat.h> #include <errno.h> -#include <stdio.h> #include <fcntl.h> +#include <stdio.h> #include <stdlib.h> -#include <unistd.h> #include <string.h> +#include <unistd.h> #include "cvs.h" -#include "rcs.h" #include "log.h" #include "proto.h" |