Home
last modified time | relevance | path

Searched refs:sys_nerr (Results 1 – 21 of 21) sorted by relevance

/freebsd-14.2/contrib/netbsd-tests/lib/libc/string/
H A Dt_strerror.c51 for (i = 1; i < sys_nerr; i++) in ATF_TC_BODY()
54 for (; i < sys_nerr + 10; i++) in ATF_TC_BODY()
89 for (i = 1; i < sys_nerr; i++) { in ATF_TC_BODY()
94 for (; i < sys_nerr + 10; i++) { in ATF_TC_BODY()
/freebsd-14.2/contrib/sendmail/libsm/
H A Dstrerror.c31 extern int sys_nerr;
52 if (err >= 0 && err < sys_nerr)
/freebsd-14.2/contrib/ntp/libntp/
H A Dbsd_strerror.c37 extern int sys_nerr; in strerror()
41 if ((unsigned int)errnum < sys_nerr) in strerror()
/freebsd-14.2/crypto/heimdal/lib/roken/
H A Dstrerror.c40 extern int sys_nerr;
48 if(eno < 0 || eno >= sys_nerr) in strerror()
/freebsd-14.2/contrib/tcp_wrappers/
H A Dpercent_m.c17 extern int sys_nerr;
29 if (errno < sys_nerr && errno > 0) { in percent_m()
H A Dtli-sequent.c34 extern int sys_nerr;
158 if (errno < 0 || errno >= sys_nerr) { in tli_error()
H A Dtli.c45 extern int sys_nerr;
332 if (errno < 0 || errno >= sys_nerr) {
/freebsd-14.2/contrib/ntp/libntp/lib/isc/unix/
H A Dstrerror.c45 extern const int sys_nerr;
71 if (num >= 0 && num < sys_nerr) in isc__strerror()
/freebsd-14.2/lib/libc/gen/
H A Derrlst.c219 const int sys_nerr = ELAST + 1; variable
223 __strong_reference(sys_nerr, __hidden_sys_nerr);
H A DSymbol.map101 sys_nerr;
/freebsd-14.2/lib/libc/include/
H A Derrlst.h39 #define __hidden_sys_nerr sys_nerr
/freebsd-14.2/contrib/less/
H A Dos.c345 extern int sys_nerr; in strerror()
347 if (err < sys_nerr) in strerror()
/freebsd-14.2/crypto/openssh/openbsd-compat/
H A Dbsd-misc.c99 extern int sys_nerr; in strerror()
102 if ((e >= 0) && (e < sys_nerr)) in strerror()
/freebsd-14.2/contrib/sendmail/src/
H A Derr.c1148 extern int sys_nerr;
1173 if (errnum >= 0 && errnum < sys_nerr)
1313 if (errnum > 0 && errnum < sys_nerr)
/freebsd-14.2/contrib/bmake/
H A Dutil.c19 extern int errno, sys_nerr;
26 if (e < 0 || e >= sys_nerr) { in strerror()
/freebsd-14.2/lib/libc/string/
H A DMakefile.inc84 strerror.3 sys_nerr.3
/freebsd-14.2/include/
H A Dstdio.h404 extern const int sys_nerr;
/freebsd-14.2/contrib/tcsh/
H A Dtc.os.c1122 extern int sys_nerr;
1127 if (i >= 0 && i < sys_nerr) { in xstrerror()
/freebsd-14.2/contrib/sendmail/include/sm/
H A Dconf.h2441 # define sys_nerr __sys_nerr macro
/freebsd-14.2/crypto/openssh/
H A Dconfigure.ac4663 AC_CACHE_CHECK([if libc defines sys_nerr], ac_cv_libc_defines_sys_nerr, [
4665 [[ extern int sys_nerr; printf("%i", sys_nerr);]])],
4671 AC_DEFINE([HAVE_SYS_NERR], [1], [Define if your system defines sys_nerr])
/freebsd-14.2/libexec/rtld-elf/
H A Drtld.c6363 if (errnum < 0 || errnum >= sys_nerr) in rtld_strerror()