z_error
# define Assert(cond,msg) {if(!(cond)) z_error(msg);}
z_error("invalid match");
zlib.z_error = (const char *(*)()) dlsym(zlib.z_dlp, "zError");
if (zlib.z_uncompress == NULL || zlib.z_error == NULL ||
return (zlib.z_error(err));
const char *(*z_error)(int);
z_error("invalid match");
extern void z_error OF((char *m));
#define Assert(cond, msg) { if (!(cond)) z_error(msg); }