- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
27 lines
652 B
Diff
27 lines
652 B
Diff
From 6120cee594c543d17ae015bc601012debcf57177 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Mon, 23 Oct 2023 10:43:42 +0100
|
|
Subject: [PATCH] include string.h for strncpy()
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
Upstream-Status: Backport [master: 6120cee594c543d17ae015bc601012debcf57177]
|
|
---
|
|
interface.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/interface.c b/interface.c
|
|
index 29229ad6f53d..9a83c36933e7 100644
|
|
--- a/interface.c
|
|
+++ b/interface.c
|
|
@@ -5,6 +5,7 @@
|
|
* @note SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
#include <stdlib.h>
|
|
+#include <string.h>
|
|
#include "interface.h"
|
|
|
|
struct interface {
|
|
--
|
|
2.34.1
|
|
|