歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Linux系統調用函數

#include <stdio.h>
#include <fcntl.h>


#include <sys/types.h>
#include <stdlib.h>
#include <sys/stat.h>


int main(int argc,char *argv[]){
int i;
if(argc<2){
printf("error!\n");
}
for(i=1;i<argc;i++){
create(argv[i],0755);
}

}

使用gcc test.c -o test提示一下錯誤,想問的是,對於Linux庫函數create還需要做什麼樣的特殊操作嗎?

test.c:(.text+0x4b): undefined reference to `create'
collect2: ld returned 1 exit status

Copyright © Linux教程網 All Rights Reserved