xref: /freebsd/lib/libnetbsd/glob.h (revision b3e7694832e81d7a904a10f525f8797b753bf0d3)
16b0a2ac1SEnji Cooper /*-
29a2036bdSEnji Cooper  * Copyright (c) 2017 Dell, Inc.
36b0a2ac1SEnji Cooper  * All rights reserved.
46b0a2ac1SEnji Cooper  *
56b0a2ac1SEnji Cooper  * Redistribution and use in source and binary forms, with or without
69a2036bdSEnji Cooper  * modification, are permitted provided that the following conditions are met:
76b0a2ac1SEnji Cooper  *
89a2036bdSEnji Cooper  * 1. Redistributions of source code must retain the above copyright notice,
99a2036bdSEnji Cooper  * this list of conditions and the following disclaimer.
109a2036bdSEnji Cooper  *
119a2036bdSEnji Cooper  * 2. Redistributions in binary form must reproduce the above copyright notice,
129a2036bdSEnji Cooper  * this list of conditions and the following disclaimer in the documentation
139a2036bdSEnji Cooper  * and/or other materials provided with the distribution.
149a2036bdSEnji Cooper  *
159a2036bdSEnji Cooper  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
169a2036bdSEnji Cooper  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
176b0a2ac1SEnji Cooper  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
189a2036bdSEnji Cooper  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
199a2036bdSEnji Cooper  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
209a2036bdSEnji Cooper  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
219a2036bdSEnji Cooper  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
229a2036bdSEnji Cooper  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
239a2036bdSEnji Cooper  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
249a2036bdSEnji Cooper  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
259a2036bdSEnji Cooper  * POSSIBILITY OF SUCH DAMAGE.
266b0a2ac1SEnji Cooper  */
276b0a2ac1SEnji Cooper 
286b0a2ac1SEnji Cooper #ifndef _LIBNETBSD_GLOB_H_
296b0a2ac1SEnji Cooper #define _LIBNETBSD_GLOB_H_
306b0a2ac1SEnji Cooper 
316b0a2ac1SEnji Cooper #include_next <glob.h>
326b0a2ac1SEnji Cooper 
336b0a2ac1SEnji Cooper #ifndef	__gl_stat_t
346b0a2ac1SEnji Cooper #define	__gl_stat_t struct stat
356b0a2ac1SEnji Cooper #endif
366b0a2ac1SEnji Cooper 
37*e0f389edSEnji Cooper #endif
38