syscalls: add COMPAT13

Reviewed by:	brooks
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D33343
This commit is contained in:
Konstantin Belousov 2021-12-08 23:01:09 +02:00
parent a6765c4b44
commit c1a8472793
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@
; COMPAT10 included on COMPAT_FREEBSD10 #ifdef (FreeBSD 10 compat)
; COMPAT11 included on COMPAT_FREEBSD11 #ifdef (FreeBSD 11 compat)
; COMPAT12 included on COMPAT_FREEBSD12 #ifdef (FreeBSD 12 compat)
; COMPAT13 included on COMPAT_FREEBSD13 #ifdef (FreeBSD 13 compat)
; OBSOL obsolete, not included in system, only specifies name
; RESERVED reserved for local or vendor use (not for FreeBSD)
; UNIMPL not implemented, placeholder only

View File

@ -226,6 +226,7 @@ local compat_options = {
{ stdcompat = "FREEBSD10" },
{ stdcompat = "FREEBSD11" },
{ stdcompat = "FREEBSD12" },
{ stdcompat = "FREEBSD13" },
}
local function trim(s, char)