commit: ca7b4f54c4d8411307ad597b0abe16b387b9bc4a Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Sat Jan 10 13:35:46 2026 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Sat Jan 10 13:35:46 2026 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=ca7b4f54
libq/xsystem: include xalloc.h for xmalloc Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> libq/xsystem.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libq/xsystem.c b/libq/xsystem.c index 05743ce..17b0f24 100644 --- a/libq/xsystem.c +++ b/libq/xsystem.c @@ -1,5 +1,5 @@ /* - * Copyright 2010-2022 Gentoo Foundation + * Copyright 2010-2026 Gentoo Foundation * Distributed under the terms of the GNU General Public License v2 * * Copyright 2010-2016 Mike Frysinger - <[email protected]> @@ -13,6 +13,7 @@ #include <fcntl.h> #include <sys/types.h> #include <unistd.h> +#include <xalloc.h> #include "xasprintf.h" #include "xsystem.h"
