1*25d6a9e8Sguenther /* $OpenBSD: regex.h,v 1.1 2015/09/14 12:22:49 guenther Exp $ */ 2*25d6a9e8Sguenther /* 3*25d6a9e8Sguenther * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org> 4*25d6a9e8Sguenther * 5*25d6a9e8Sguenther * Permission to use, copy, modify, and distribute this software for any 6*25d6a9e8Sguenther * purpose with or without fee is hereby granted, provided that the above 7*25d6a9e8Sguenther * copyright notice and this permission notice appear in all copies. 8*25d6a9e8Sguenther * 9*25d6a9e8Sguenther * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10*25d6a9e8Sguenther * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*25d6a9e8Sguenther * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12*25d6a9e8Sguenther * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*25d6a9e8Sguenther * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*25d6a9e8Sguenther * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15*25d6a9e8Sguenther * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16*25d6a9e8Sguenther */ 17*25d6a9e8Sguenther 18*25d6a9e8Sguenther #ifndef _LIBC_REGEX_H_ 19*25d6a9e8Sguenther #define _LIBC_REGEX_H_ 20*25d6a9e8Sguenther 21*25d6a9e8Sguenther #include_next <regex.h> 22*25d6a9e8Sguenther 23*25d6a9e8Sguenther PROTO_DEPRECATED(regcomp); 24*25d6a9e8Sguenther PROTO_DEPRECATED(regerror); 25*25d6a9e8Sguenther PROTO_DEPRECATED(regexec); 26*25d6a9e8Sguenther PROTO_NORMAL(regfree); 27*25d6a9e8Sguenther 28*25d6a9e8Sguenther #endif /* !_LIBC_REGEX_H_ */ 29