style(9): sort includes, remove EOL spaces.

MFC after:	1 week
This commit is contained in:
Maxim Konovalov 2002-05-03 21:03:37 +00:00
parent 70e01b9a56
commit cc37581539
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96001

View File

@ -36,6 +36,10 @@ static const char rcsid[] =
#define BZCOMPRESS_POSTFIX ".bz2"
#endif
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
@ -49,10 +53,6 @@ static const char rcsid[] =
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>
#include <sys/wait.h>
#include "pathnames.h"
@ -944,7 +944,7 @@ parse8601(char *s, char *errline)
return -1;
}
if ((tsecs = mktime(&tm)) == -1)
errx(1, "nonexistent time:\n%s", errline);
errx(1, "nonexistent time:\n%s", errline);
return tsecs;
}
@ -1115,6 +1115,6 @@ parseDWM(char *s, char *errline)
s = t;
}
if ((tsecs = mktime(&tm)) == -1)
errx(1, "nonexistent time:\n%s", errline);
errx(1, "nonexistent time:\n%s", errline);
return tsecs;
}