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/annotate.c | |
parent | 7e9436fcf71abf14289b42e70a59c34d9a1cf105 (diff) |
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" |