CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2016/02/08 18:29:12
Modified files: usr.bin/hexdump: display.c hexdump.h parse.c Log message: For a long time, nomem() has been a wrapper for err(1, NULL) and meanwhile emalloc() has turned into calloc() by doing malloc + memset. Delete them and Use the libc functions directly instead. I've been running with this diff for ages and was reminded of it by a similar suggestion from mmcc@ and by recent diffs from Michal Mazurek. ok mmcc@