diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-27 16:18:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-27 16:18:59 +0000 |
commit | 2b19531add8ab240562a849b26206e8d47ba5eaf (patch) | |
tree | 9e473e35fed24f4271d92bb6200ce0886e76e6f0 | |
parent | f921f919064cdf737200fe814da50cb35c510ecf (diff) |
header order
-rw-r--r-- | libexec/atrun/atrun.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/atrun/atrun.c b/libexec/atrun/atrun.c index 7ce28e5a7c2..c36563913e0 100644 --- a/libexec/atrun/atrun.c +++ b/libexec/atrun/atrun.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atrun.c,v 1.14 2001/07/09 07:04:41 deraadt Exp $ */ +/* $OpenBSD: atrun.c,v 1.15 2001/08/27 16:18:58 deraadt Exp $ */ /* * atrun.c - run jobs queued by at; run with root privileges. @@ -27,8 +27,8 @@ /* System Headers */ -#include <sys/fcntl.h> #include <sys/types.h> +#include <sys/fcntl.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/resource.h> @@ -71,7 +71,7 @@ /* File scope variables */ static char *namep; -static char rcsid[] = "$OpenBSD: atrun.c,v 1.14 2001/07/09 07:04:41 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: atrun.c,v 1.15 2001/08/27 16:18:58 deraadt Exp $"; static int debug = 0; /* Local functions */ |