警告:隐式声明函数'sendto'

时间:2014-12-23 12:56:08

标签: c warnings

我有以下问题:

warning: implicit declaration of function ‘sendto’

变量outputCounterByte

outputCounterByte += sendto(server_socket, outputBuff, offSet, 0, (struct sockaddr*) remote_addr, server_addr_len);

我不明白这一点,哪里有问题? OutputCouterByte的值为0,并定义了其他变量。我已经包含了所有标题(函数原型)。 在其他功能中,它正在发挥作用。

1 个答案:

答案 0 :(得分:1)

您需要包含

#include <sys/types.h>
#include <sys/socket.h>

提供函数原型。