Hi Guillem! On Tue, Feb 27, 2024 at 05:33:16PM +0100, Alejandro Colomar wrote: > I've also seen errc(3bsd) disappear, and possibly many more functions. > If you need some help to reproduce this issue, just let me know.
In the case of <err.h>, the header has disappeared:
$ cat bsd.c
#include <bsd/err.h>
#include <bsd/stdlib.h>
long
strtoi_(char *s, char **endp, int b, long min, long max, int *st)
{
return strtoi(s, endp, b, min, max, st);
}
alx@debian:~/tmp$ gcc -Wall -Wextra -S bsd.c
bsd.c:1:10: fatal error: bsd/err.h: No such file or directory
1 | #include <bsd/err.h>
| ^~~~~~~~~~~
compilation terminated.
This seems consistent with the recent build system changes. The bug is
probably there.
Have a lovely day!
Alex
--
<https://www.alejandro-colomar.es/>
Looking for a remote C programming job at the moment.
signature.asc
Description: PGP signature

