diff options
author | ngie <ngie@FreeBSD.org> | 2017-02-21 07:02:51 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-02-21 07:02:51 +0000 |
commit | c63528b3d367dcf834ff1759cb43d40b21511c54 (patch) | |
tree | c539aaf5a32569abe300b10502b62080fe0aeb72 /lib/libnetbsd/util.h | |
parent | 3a54285b0861ff79dc226ded783148832bd9bde1 (diff) | |
download | FreeBSD-src-c63528b3d367dcf834ff1759cb43d40b21511c54.zip FreeBSD-src-c63528b3d367dcf834ff1759cb43d40b21511c54.tar.gz |
Revert r314020
The test build I ran unfortunately didn't catch the fact that the sha384.h
compat header is missing on ^/stable/10 due to some code not being MFCed
Diffstat (limited to 'lib/libnetbsd/util.h')
-rw-r--r-- | lib/libnetbsd/util.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libnetbsd/util.h b/lib/libnetbsd/util.h index 99bc3ca..c7d32e1 100644 --- a/lib/libnetbsd/util.h +++ b/lib/libnetbsd/util.h @@ -30,13 +30,12 @@ * SUCH DAMAGE. */ -#ifndef _LIBNETBSD_UTIL_H_ -#define _LIBNETBSD_UTIL_H_ +#ifndef _UTIL_H_ +#define _UTIL_H_ -#include <sys/types.h> #include <libutil.h> char *flags_to_string(u_long flags, const char *def); int string_to_flags(char **stringp, u_long *setp, u_long *clrp); -#endif +#endif /* _UTIL_H_ */ |