Enno "Gottox" Boland <[email protected]> wrote: > I think fprintf is unneeded here.
> - fprintf(stderr, "warning: no locale support\n");
> + fputs("warning: no locale support\n", stderr);
Depends on a code style one likes. To quote FreeBSD's style(9):
Use printf(3), not fputs(3), puts(3), putchar(3), whatever; it is faster
and usually cleaner, not to mention avoiding stupid bugs.
--
<< Marcin Cieslak // [email protected] >>
