Export _mmap and __sys_mmap from libc.so

Unlike the other syscalls these two symbols were missing from the
version script. I noticed this while looking into the compiler-rt
runtime libraries for CHERI.

Reviewed by:	brooks
Obtained from:	https://github.com/CTSRD-CHERI/cheribsd/pull/1063
MFC after:	3 days
This commit is contained in:
Alex Richardson 2021-09-09 11:46:53 +01:00
parent f2c9a8b9d9
commit 395db99f32

View File

@ -765,6 +765,8 @@ FBSDprivate_1.0 {
__sys_mlock;
_mlockall;
__sys_mlockall;
_mmap;
__sys_mmap;
_modfind;
__sys_modfind;
_modfnext;