cp命令的编写——浅谈系统调用
摘要:linux中cp命令的实现,通过这个程序,我们需要了解系统调用耗费时间的方面,同时学会系统调用的错误处理机制。
本文来源:http://blog.csdn.net/trochiluses/article/details/11103523
#include<error.h>extern int errno;int sample(){ int fd; fd=open("file",O_RDONLY); if(fd==-1) { perror("can not open file:"); }}