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/server.c | |
parent | 7e9436fcf71abf14289b42e70a59c34d9a1cf105 (diff) |
headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;
Diffstat (limited to 'usr.bin/cvs/server.c')
-rw-r--r-- | usr.bin/cvs/server.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/cvs/server.c b/usr.bin/cvs/server.c index 7b38cbbbbf1..6552c7cc686 100644 --- a/usr.bin/cvs/server.c +++ b/usr.bin/cvs/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.17 2005/05/24 04:12:25 jfb Exp $ */ +/* $OpenBSD: server.c,v 1.18 2005/05/31 08:58:48 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -27,12 +27,12 @@ #include <sys/types.h> #include <sys/stat.h> -#include <stdlib.h> -#include <stdio.h> -#include <unistd.h> #include <errno.h> -#include <string.h> #include <paths.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include "cvs.h" #include "log.h" |