Date: Tue, 31 May 2016 06:24:10 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r301023 - head/sys/boot/geli Message-ID: <201605310624.u4V6OAYi071387@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605310624.u4V6OAYi071387>