diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2015-11-19 16:14:09 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2015-11-19 16:14:09 +0000 |
commit | 5263b85aedabacb62d8eda3280a9048f429ad230 (patch) | |
tree | 8db279b117c4662be31418bb7f93a7a88c971a92 /sbin/fdisk/user.c | |
parent | 9b1eeb280d840d864dcfa37749ad84b28593145d (diff) |
Reduce overburden of unnecessary #include's. Note that param.h is
included only for DEV_BSIZE. Use INT64_MAX instead of LLONG_MAX
so stdint.h is enough. General tidying up of #include sections.
ok GCC
Diffstat (limited to 'sbin/fdisk/user.c')
-rw-r--r-- | sbin/fdisk/user.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/fdisk/user.c b/sbin/fdisk/user.c index ab40e1a238e..e2e5b7e193e 100644 --- a/sbin/fdisk/user.c +++ b/sbin/fdisk/user.c @@ -1,4 +1,4 @@ -/* $OpenBSD: user.c,v 1.47 2015/11/18 02:12:51 krw Exp $ */ +/* $OpenBSD: user.c,v 1.48 2015/11/19 16:14:08 krw Exp $ */ /* * Copyright (c) 1997 Tobias Weingartner @@ -19,6 +19,7 @@ #include <sys/types.h> #include <sys/fcntl.h> #include <sys/disklabel.h> + #include <err.h> #include <stdio.h> #include <string.h> |