Linux常用函数笔记.doc
文本预览下载声明
2010年7月29日 星期四
1、#undef DEBUG /*取消以前定义的宏定义*/。
2、注意 typedef 关键字的作用。
3、关于linux系统文件/dev/ptmx的作用。4、#define _XOPEN_SOURCE
#include stdlib.h
int grantpt(int fd);
5、#define _XOPEN_SOURCE
#include stdlib.h
int unlockpt(int fd);
6、#define _XOPEN_SOURCE
#include stdlib.h
char *ptsname(int fd);
显示全部