mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
C2x scanf binary constant handling
C2x adds binary integer constants starting with 0b or 0B, and supports those constants for the %i scanf format (in addition to the %b format, which isn't yet implemented for scanf in glibc). Implement that scanf support for glibc. As with the strtol support, this is incompatible with previous C standard versions, in that such an input string starting with 0b or 0B was previously required to be parsed as 0 (with the rest of the input potentially matching subsequent parts of the scanf format string). Thus this patch adds 12 new __isoc23_* functions per long double format (12, 24 or 36 depending on how many long double formats the glibc configuration supports), with appropriate header redirection support (generally very closely following that for the __isoc99_* scanf functions - note that __GLIBC_USE (DEPRECATED_SCANF) takes precedence over __GLIBC_USE (C2X_STRTOL), so the case of GNU extensions to C89 continues to get old-style GNU %a and does not get this new feature). The function names would remain as __isoc23_* even if C2x ends up published in 2024 rather than 2023. When scanf %b support is added, I think it will be appropriate for all versions of scanf to follow C2x rules for inputs to the %b format (given that there are no compatibility concerns for a new format). Tested for x86_64 (full glibc testsuite). The first version was also tested for powerpc (32-bit) and powerpc64le (stdio-common/ and wcsmbs/ tests), and with build-many-glibcs.py.
This commit is contained in:
@ -2633,6 +2633,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2643,6 +2647,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2653,3 +2664,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2730,6 +2730,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2740,6 +2744,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2750,6 +2761,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2394,6 +2394,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2404,6 +2408,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2414,3 +2425,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -514,6 +514,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -524,6 +528,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -534,6 +545,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0xa0
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0xa0
|
||||
|
@ -511,6 +511,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -521,6 +525,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -531,6 +542,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0xa0
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0xa0
|
||||
|
@ -2670,6 +2670,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2680,6 +2684,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2690,3 +2701,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2619,6 +2619,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2629,6 +2633,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2639,6 +2650,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2803,6 +2803,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2813,6 +2817,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2823,6 +2834,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2568,6 +2568,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2578,6 +2582,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2588,6 +2599,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2154,6 +2154,10 @@ GLIBC_2.36 wprintf F
|
||||
GLIBC_2.36 write F
|
||||
GLIBC_2.36 writev F
|
||||
GLIBC_2.36 wscanf F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2164,6 +2168,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2174,3 +2185,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -515,6 +515,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -525,6 +529,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -535,6 +546,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 _Exit F
|
||||
GLIBC_2.4 _IO_2_1_stderr_ D 0x98
|
||||
GLIBC_2.4 _IO_2_1_stdin_ D 0x98
|
||||
|
@ -2746,6 +2746,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2756,6 +2760,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2766,6 +2777,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2719,6 +2719,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2729,6 +2733,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2739,3 +2750,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2716,6 +2716,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2726,6 +2730,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2736,3 +2747,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2711,6 +2711,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2721,6 +2725,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2731,6 +2742,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2709,6 +2709,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2719,6 +2723,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2729,6 +2740,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2717,6 +2717,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2727,6 +2731,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2737,6 +2748,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2619,6 +2619,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2629,6 +2633,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2639,6 +2650,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2758,6 +2758,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2768,6 +2772,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2778,3 +2789,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2140,6 +2140,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2150,6 +2154,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2160,3 +2171,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2773,6 +2773,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2783,6 +2787,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2793,6 +2804,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2806,6 +2806,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2816,6 +2820,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2826,6 +2837,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2527,6 +2527,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2537,6 +2541,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2547,6 +2558,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2829,6 +2829,14 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_scanfieee128 F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_sscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2839,6 +2847,20 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_swscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanfieee128 F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2849,3 +2871,17 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __isoc23_wscanfieee128 F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
|
@ -2396,6 +2396,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2406,6 +2410,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2416,3 +2427,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2596,6 +2596,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2606,6 +2610,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2616,3 +2627,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
@ -2771,6 +2771,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2781,6 +2785,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2791,6 +2802,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2564,6 +2564,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2574,6 +2578,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2584,6 +2595,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2626,6 +2626,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2636,6 +2640,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2646,6 +2657,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2623,6 +2623,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2633,6 +2637,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2643,6 +2654,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2766,6 +2766,10 @@ GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.37 __ppoll64_chk F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2776,6 +2780,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2786,6 +2797,19 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_fwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_scanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_sscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_swscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vfwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vsscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vswscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_vwscanf F
|
||||
GLIBC_2.38 __nldbl___isoc23_wscanf F
|
||||
GLIBC_2.4 _IO_fprintf F
|
||||
GLIBC_2.4 _IO_printf F
|
||||
GLIBC_2.4 _IO_sprintf F
|
||||
|
@ -2591,6 +2591,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2601,6 +2605,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2611,6 +2622,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2542,6 +2542,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2552,6 +2556,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2562,6 +2573,7 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
GLIBC_2.4 __confstr_chk F
|
||||
GLIBC_2.4 __fgets_chk F
|
||||
GLIBC_2.4 __fgets_unlocked_chk F
|
||||
|
@ -2648,6 +2648,10 @@ GLIBC_2.36 pidfd_open F
|
||||
GLIBC_2.36 pidfd_send_signal F
|
||||
GLIBC_2.36 process_madvise F
|
||||
GLIBC_2.36 process_mrelease F
|
||||
GLIBC_2.38 __isoc23_fscanf F
|
||||
GLIBC_2.38 __isoc23_fwscanf F
|
||||
GLIBC_2.38 __isoc23_scanf F
|
||||
GLIBC_2.38 __isoc23_sscanf F
|
||||
GLIBC_2.38 __isoc23_strtoimax F
|
||||
GLIBC_2.38 __isoc23_strtol F
|
||||
GLIBC_2.38 __isoc23_strtol_l F
|
||||
@ -2658,6 +2662,13 @@ GLIBC_2.38 __isoc23_strtoul_l F
|
||||
GLIBC_2.38 __isoc23_strtoull F
|
||||
GLIBC_2.38 __isoc23_strtoull_l F
|
||||
GLIBC_2.38 __isoc23_strtoumax F
|
||||
GLIBC_2.38 __isoc23_swscanf F
|
||||
GLIBC_2.38 __isoc23_vfscanf F
|
||||
GLIBC_2.38 __isoc23_vfwscanf F
|
||||
GLIBC_2.38 __isoc23_vscanf F
|
||||
GLIBC_2.38 __isoc23_vsscanf F
|
||||
GLIBC_2.38 __isoc23_vswscanf F
|
||||
GLIBC_2.38 __isoc23_vwscanf F
|
||||
GLIBC_2.38 __isoc23_wcstoimax F
|
||||
GLIBC_2.38 __isoc23_wcstol F
|
||||
GLIBC_2.38 __isoc23_wcstol_l F
|
||||
@ -2668,3 +2679,4 @@ GLIBC_2.38 __isoc23_wcstoul_l F
|
||||
GLIBC_2.38 __isoc23_wcstoull F
|
||||
GLIBC_2.38 __isoc23_wcstoull_l F
|
||||
GLIBC_2.38 __isoc23_wcstoumax F
|
||||
GLIBC_2.38 __isoc23_wscanf F
|
||||
|
Reference in New Issue
Block a user