blob: d3ddcffc6605038e828ab8cbc68a099ac95ff8d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* glob() compatibility
*
* Copyright (C) 2018 Laurent Pinchart
*
* Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
*/
#ifndef __UVC_GADGET_GLOB_H__
#define __UVC_GADGET_GLOB_H__
#include "config.h"
#ifdef HAVE_GLOB
#include_next <glob.h>
#else
#include "compat/glob.h"
#endif
#endif /* __UVC_GADGET_GLOB_H__ */
|