pipewire-jack: examples: video-dsp-play: add missing includes

`strerror()` needs `string.h`, and `lrintf()` needs `math.h`.
This commit is contained in:
Barnabás Pőcze 2025-02-02 14:24:20 +01:00
parent 5e6b77cf1e
commit fc91f93af3

View file

@ -2,7 +2,9 @@
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
/* SPDX-License-Identifier: MIT */
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/mman.h>