svn commit: r301023 - head/sys/boot/geli

Garrett Cooper ngie at FreeBSD.org
Tue May 31 06:24:11 UTC 2016


Author: ngie
Date: Tue May 31 06:24:09 2016
New Revision: 301023
URL: https://svnweb.freebsd.org/changeset/base/301023

Log:
  Add missing libc includes to fix -Wimplicit-function-declaration warnings
  
  MFC after: 2 weeks
  Reported by: clang
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/sys/boot/geli/geliboot_crypto.c

Modified: head/sys/boot/geli/geliboot_crypto.c
==============================================================================
--- head/sys/boot/geli/geliboot_crypto.c	Tue May 31 06:00:18 2016	(r301022)
+++ head/sys/boot/geli/geliboot_crypto.c	Tue May 31 06:24:09 2016	(r301023)
@@ -27,6 +27,10 @@
  * $FreeBSD$
  */
 
+#include <stdio.h>
+#include <string.h>
+#include <strings.h>
+
 #include "geliboot.h"
 
 int


More information about the svn-src-head mailing list