Add a few missing includes for config.h

This caused the headers to not haved _GNU_SOURCE set which in turn
caused clang-tidy to complain because util-strings.h didn't have
strtod_l.

Part-of: <https://gitlab.freedesktop.org/libinput/libinput/-/merge_requests/1175>
This commit is contained in:
Peter Hutterer 2025-04-03 14:04:59 +10:00 committed by Marge Bot
parent df8726b405
commit 5c751491fa
3 changed files with 6 additions and 0 deletions

View file

@ -24,6 +24,8 @@
#ifndef TIMER_H
#define TIMER_H
#include "config.h"
#include <stdint.h>
#include "libinput-util.h"

View file

@ -24,6 +24,8 @@
#pragma once
#include "config.h"
#include <stdint.h>
#include <stdbool.h>

View file

@ -24,6 +24,8 @@
#ifndef _SHARED_H_
#define _SHARED_H_
#include "config.h"
#include <stdbool.h>
#include <limits.h>
#include <getopt.h>