diff options
author | des <des@FreeBSD.org> | 2001-06-29 06:21:57 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-06-29 06:21:57 +0000 |
commit | caaabb45e096e89bdc93414d08f6e40a255d0dc2 (patch) | |
tree | 2cf14bfff38a6d5322edb34f5eda69f429b144c4 /sbin/md5 | |
parent | a51b5ef63f4b8f61e451c5bb4c74c19649a68a5b (diff) | |
download | FreeBSD-src-caaabb45e096e89bdc93414d08f6e40a255d0dc2.zip FreeBSD-src-caaabb45e096e89bdc93414d08f6e40a255d0dc2.tar.gz |
Fix include ordering breakage from rev. 1.23.
Please-read-style(9): dd
Diffstat (limited to 'sbin/md5')
-rw-r--r-- | sbin/md5/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 58e4129..c1e1eef 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -26,10 +26,10 @@ static const char rcsid[] = #include <err.h> #include <md5.h> #include <stdio.h> -#include <time.h> -#include <unistd.h> #include <stdlib.h> #include <string.h> +#include <time.h> +#include <unistd.h> /* * Length of test block, number of test blocks. |