mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
17 lines
336 B
Text
17 lines
336 B
Text
|
|
/*
|
||
|
|
* $FreeBSD$
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
* libregex uses a different version name because its symbols are not strictly
|
||
|
|
* compatible with those provided by libc. Re-using the version name from libc
|
||
|
|
* could cause linking headaches and make debugging more difficult than it needs
|
||
|
|
* to be.
|
||
|
|
*/
|
||
|
|
LIBREGEX_1.0 {
|
||
|
|
regcomp;
|
||
|
|
regerror;
|
||
|
|
regexec;
|
||
|
|
regfree;
|
||
|
|
};
|