mirror of
https://github.com/labwc/labwc.git
synced 2025-11-05 13:29:58 -05:00
Unbreak match_glob
Since bool is not a C89 type, include <stdbool.h> in match.h.
This commit is contained in:
parent
abb7c03c75
commit
12f6a8975a
2 changed files with 1 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
#ifndef LABWC_MATCH_H
|
||||
#define LABWC_MATCH_H
|
||||
#include <glib.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
/**
|
||||
* match_glob() - Pattern match using '*' wildcards and '?' jokers.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
#define _POSIX_C_SOURCE 200809L
|
||||
#include <stdbool.h>
|
||||
#include "common/match.h"
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue