Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame] | 1 | From b01b176a665ba65979d74922955f51dc4888a713 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Tue, 23 Aug 2022 15:21:16 -0700 |
| 4 | Subject: [PATCH] arcam_av.c: Include missing string.h |
| 5 | |
| 6 | bzero() function needs this header to be included |
| 7 | |
| 8 | Upstream-Status: Submitted [https://github.com/alsa-project/alsa-plugins/pull/47] |
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 10 | --- |
| 11 | arcam-av/arcam_av.c | 1 + |
| 12 | 1 file changed, 1 insertion(+) |
| 13 | |
| 14 | diff --git a/arcam-av/arcam_av.c b/arcam-av/arcam_av.c |
| 15 | index 63f9b4e..29fc537 100644 |
| 16 | --- a/arcam-av/arcam_av.c |
| 17 | +++ b/arcam-av/arcam_av.c |
| 18 | @@ -27,6 +27,7 @@ |
| 19 | #include <signal.h> |
| 20 | #include <stddef.h> |
| 21 | #include <stdio.h> |
| 22 | +#include <string.h> |
| 23 | #include <termios.h> |
| 24 | #include <unistd.h> |
| 25 | |