C语言比较好的风格梳理
errno
int err;
tb = malloc(sizeof(struct xtracer_table));
if (!tb) {
err = errno;
fprintf(stderr, "%s:%d, errno:%d, %s\n",
__func__, __LINE__, err, strerror(err));
return NULL;
}
muahao@aliyun.com