Is there a reason why the limits.h #include wasn’t added as well? It’s needed for SIZE_MAX on FreeBSD (at least). Thanks, -Ngie $ cvs diff -u lib/libc/sys/t_write.c Index: lib/libc/sys/t_write.c =================================================================== RCS file: /cvsroot/src/tests/lib/libc/sys/t_write.c,v retrieving revision 1.3 diff -u -r1.3 t_write.c --- lib/libc/sys/t_write.c 13 Jan 2017 19:27:23 -0000 1.3 +++ lib/libc/sys/t_write.c 13 Jan 2017 23:13:48 -0000 @@ -36,6 +36,7 @@ #include <atf-c.h> #include <errno.h> #include <fcntl.h> +#include <limits.h> #include <signal.h> #include <limits.h> #include <stdio.h> |