【文件属性】:
文件名称:csapp_深入理解计算机系统_相关文件_csapp.h_csapp.c
文件大小:6KB
文件格式:BZ2
更新时间:2012-06-28 04:49:47
csapp 深入理解计算机系统 csapp.h csapp.c
深入理解计算机系统:
csapp.h
csapp.c
//csapp.h
/* $begin csapp.h */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
/* Simplifies calls to bind(), connect(), and accept() */
/* $begin sockaddrdef */
typedef struct sockaddr SA;
/* $end sockaddrdef */
//csapp.c
/* $begin csapp.c */
#include "csapp.h"
/**************************
* Error-handling functions
**************************/
/* $begin errorfuns */
/* $begin unixerror */
void unix_error(char *msg) /* unix-style error */
{
fprintf(stderr, "%s: %s\n", msg, strerror(errno));
exit(0);
}