gpt4 book ai didi

C:函数的隐式声明

转载 作者:太空狗 更新时间:2023-10-29 16:32:55 25 4
gpt4 key购买 nike

我正在完成一项开发我们自己的 RPC 客户端的任务。在编译我的服务器部分时,我收到以下警告:

implicit declaration of function 'read'
implicit declaration of function 'write'

我知道如果我要在我的 main 之后创建一个函数,我通常会收到此警告,例如:

int main() {
doSomething();
}

void doSomething() {
...
}

在上面的例子中,它应该提示我创建的函数“doSomething”。

为什么我的编译器会提示系统调用是隐式声明的,当它出现在 main 之前声明的函数中时?下面是出现系统调用的函数。

void Open(int connfd) {
/*Get message size*/
unsigned char temp[4] = { 0 };
int n = read(connfd, temp, 4);
if(n < 0) {/*On error*/
perror("Read error");
exit(1);
}/*End if*/
unsigned int msgSize = temp[0] +
(temp[1] * 256) +
(temp[2] * 256 * 2) +
(temp[3] * 256 * 3);
printf("msgSize = %d\n", msgSize);

/*Allocate memory for message*/
char * msg = malloc(msgSize);
if(msg == NULL) {
perror("Allocation error");
exit(1);
}/*End if*/
msg = memset(msg, 0, msgSize);

/*Read entire message from client*/
n = read(connfd, msg, msgSize);
if(n < 0) {/*On error*/
perror("Read error");
exit(1);
}/*End if*/

/*Extract pathname from message - NULL terminated*/
char * pathname = malloc(strlen(msg) + 1);
if(pathname == NULL) {
perror("Allocation error");
exit(1);
}/*End if*/
pathname = memset(pathname, 0, strlen(msg) + 1);
pathname = memcpy(pathname, msg, strlen(msg));

/*Extract flags from message*/
int i;
for(i = 0; i < sizeof(int); i++) {
temp[i] = msg[strlen(pathname) + 1 + i];
}/*End for i*/
unsigned int flags = temp[0] +
(temp[1] * 256) +
(temp[2] * 256 * 2) +
(temp[3] * 256 * 3);

/*Extract mode from message*/
for(i = 0; i < sizeof(mode_t); i++) {
temp[i] = msg[strlen(pathname) + 1 + sizeof(int) + 1 + i];
}/*End for i*/
mode_t mode = temp[0] +
(temp[1] * 256) +
(temp[2] * 256 * 2) +
(temp[3] * 256 * 3);

free(msg);/*Free msg since it is no longer needed*/

/*Open pathname*/
umask(0);
int fd = open(pathname, flags, mode);

free(pathname);/*Free pathname since it is no longer needed*/

/*Prepare response*/
char * response = malloc(sizeof(int) * 2);
if(response == NULL) {
perror("Allocation error");
exit(1);
}/*End if*/
response = memset(response, 0, sizeof(int) * 2);

/*Build return message*/
memcpy(&response[0], &fd, sizeof(fd));
memcpy(&response[4], &errno, sizeof(fd));

/*Can't guarante socket will accept all we try to write, cope*/
int num, put;
int left = sizeof(int) * 2; put = 0;
while(left > 0) {
if((num = write(connfd, response + put, left)) < 0) {
perror("inet_wstream: write");
exit(1);
} else {
left -= num;
put += num;
}/*End else*/
}/*End while*/

free(response);/*Free response since it is no longer needed*/

return;
}/*End Open*/

最佳答案

添加#include <unistd.h>在你的程序中包含指令。

readwrite函数在 unistd.h 中声明并且您需要先声明您的函数才能调用它们。

关于C:函数的隐式声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16178876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com