mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 07:12:52 -04:00
This is a mix genuine MD interfaces and compat symbols like _getlogin. Reviewed by: kib, emaste, imp Pull Request: https://github.com/freebsd/freebsd-src/pull/908
26 lines
416 B
Text
26 lines
416 B
Text
/*
|
|
* This only needs to contain symbols that are not listed in
|
|
* symbol maps from other parts of libc (i.e., not found in
|
|
* stdlib/Symbol.map, string/Symbol.map, sys/Symbol.map, ...).
|
|
*/
|
|
FBSD_1.0 {
|
|
_mcount;
|
|
__flt_rounds;
|
|
fpgetmask;
|
|
fpgetround;
|
|
fpgetsticky;
|
|
fpsetmask;
|
|
fpsetround;
|
|
};
|
|
|
|
FBSD_1.3 {
|
|
__eabi;
|
|
};
|
|
|
|
FBSDprivate_1.0 {
|
|
_fpgetsticky;
|
|
__longjmp;
|
|
signalcontext;
|
|
__signalcontext;
|
|
__syncicache;
|
|
};
|