diff options
author | avos <avos@FreeBSD.org> | 2016-04-18 21:05:15 +0000 |
---|---|---|
committer | avos <avos@FreeBSD.org> | 2016-04-18 21:05:15 +0000 |
commit | f0171d33b464dee5ac308f1d13ede2ddd9d030a7 (patch) | |
tree | 202a73fe295a5c504dbcb0b6bd3dc404a648d308 /lib/libc/isc | |
parent | 5c27d86f778aa8b18f17e8c4e62b679a4e5aab49 (diff) | |
download | FreeBSD-src-f0171d33b464dee5ac308f1d13ede2ddd9d030a7.zip FreeBSD-src-f0171d33b464dee5ac308f1d13ede2ddd9d030a7.tar.gz |
libc: do not include <sys/types.h> where <sys/param.h> was already included
According to style(9):
> normally, include <sys/types.h> OR <sys/param.h>, but not both.
(<sys/param.h> already includes <sys/types.h> when LOCORE is not defined).
Diffstat (limited to 'lib/libc/isc')
-rw-r--r-- | lib/libc/isc/eventlib_p.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libc/isc/eventlib_p.h b/lib/libc/isc/eventlib_p.h index 8620aeb..07db816 100644 --- a/lib/libc/isc/eventlib_p.h +++ b/lib/libc/isc/eventlib_p.h @@ -27,7 +27,6 @@ #define _EVENTLIB_P_H #include <sys/param.h> -#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <sys/un.h> |