Date: Mon, 2 Apr 2018 13:36:48 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r331877 - head/sys/arm/arm Message-ID: <201804021336.w32Dam3m066984@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: andrew Date: Mon Apr 2 13:36:48 2018 New Revision: 331877 URL: https://svnweb.freebsd.org/changeset/base/331877 Log: Add the missing header for malloc(9). It was pulled in through header pollution that doesn't seem to exist in some configurations. Modified: head/sys/arm/arm/gic_acpi.c Modified: head/sys/arm/arm/gic_acpi.c ============================================================================== --- head/sys/arm/arm/gic_acpi.c Mon Apr 2 13:25:38 2018 (r331876) +++ head/sys/arm/arm/gic_acpi.c Mon Apr 2 13:36:48 2018 (r331877) @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); #include <sys/systm.h> #include <sys/bus.h> #include <sys/kernel.h> +#include <sys/malloc.h> #include <sys/module.h> #include <machine/intr.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804021336.w32Dam3m066984>