mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
17 lines
336 B
Plaintext
17 lines
336 B
Plaintext
|
/*
|
||
|
* $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;
|
||
|
};
|