/* ISC license. */ #include #include void *alloc (size_t n) { return malloc(n ? n : 1) ; }