NetBSD/usr.bin/config
dsl 342d35797b Instead of trying to check the return value of every fprintf() and fputs()
call - which makes the code completely impossibly to follow, call fflush()
and ferror() just prior to calling fclose().
This has the advantage of actually detecting the any write errors, since
the output is block bufferred and will typically not happen during fprintf()
but only during the fclose() - where it is difficult to report.
I also singlilarly refuse to add (void) casts to every printf call in the
system - since it almost never makes any sense to look at the return value
(unless you want to know how many bytes were actually writtem).
2006-10-04 20:34:48 +00:00
..
Makefile protect libutil with HOSTPROG 2006-08-29 16:54:03 +00:00
config.1 Reference config(5). Noted by perry@. 2006-06-04 20:07:52 +00:00
config.5 Fix typo. 2006-09-04 18:32:54 +00:00
config.samples.5 Set a more realistic date than the day I started writing it. 2006-06-04 20:06:14 +00:00
defs.h Coverity CID 175: Avoid memory leak; add new function to destroy a hash table. 2006-09-27 19:05:46 +00:00
files.c Coverity CID 175: Avoid memory leak; add new function to destroy a hash table. 2006-09-27 19:05:46 +00:00
gram.y Add support for specifying a default value on a 'defparam' line. 2006-09-04 06:45:14 +00:00
hash.c Coverity CID 175: Avoid memory leak; add new function to destroy a hash table. 2006-09-27 19:05:46 +00:00
main.c Instead of trying to check the return value of every fprintf() and fputs() 2006-10-04 20:34:48 +00:00
mkdevsw.c Instead of trying to check the return value of every fprintf() and fputs() 2006-10-04 20:34:48 +00:00
mkheaders.c Instead of trying to check the return value of every fprintf() and fputs() 2006-10-04 20:34:48 +00:00
mkioconf.c Instead of trying to check the return value of every fprintf() and fputs() 2006-10-04 20:34:48 +00:00
mkmakefile.c Instead of trying to check the return value of every fprintf() and fputs() 2006-10-04 20:34:48 +00:00
mkswap.c Instead of trying to check the return value of every fprintf() and fputs() 2006-10-04 20:34:48 +00:00
pack.c Now that this is part of tools, we don't need the extra build glue. 2006-08-26 18:17:13 +00:00
scan.l Now that this is part of tools, we don't need the extra build glue. 2006-08-26 18:17:13 +00:00
sem.c Now that this is part of tools, we don't need the extra build glue. 2006-08-26 18:17:13 +00:00
sem.h Add 'no config <name>'. 2006-02-11 20:15:53 +00:00
util.c There isn't really any point in the 'union' for nv_str and nv_ptr, all it 2006-09-03 07:45:40 +00:00