28

我有一些简单的代码,但我收到一个警告:

-bash-3.2$ gcc -Wall print_process_environ.c -o p_p
print_process_environ.c: In function 'print_process_environ':
print_process_environ.c:24: warning: implicit declaration of function 'strlen'
print_process_environ.c:24: warning: incompatible implicit declaration of built-in function 'strlen'

以下是代码:

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <strings.h>

    void
    print_process_environ(pid_t pid)
    {
        int     fd;
        char    filename[24];
        char    environ[1024];
        size_t  length;
        char    *next_var;

        snprintf(filename, sizeof(filename), "/proc/%d/environ", (int)pid);
        printf("length of filename: %d\n", strlen(filename));

        fd = open(filename, O_RDONLY);
......

的定义strlen()是:

   #include <string.h>

   size_t strlen(const char *s);

如何摆脱这个警告。

4

3 回答 3

46

它是#include <string.h>。您在代码中拼写错误。此外,如果您在编译器中收到该警告.. 始终man function_name在终端上查看该函数所需的标头

 #include <string.h> // correct header
 #include <strings.h> // incorrect header - change this in your code to string.h
于 2013-11-04T03:17:02.900 回答
9

您被一个容易犯的错误所困扰,您包含了posix strings.h标头:

#include <strings.h>

代替:

#include <string.h>

posix标头包括对以下内容的支持:

int    bcmp(const void *, const void *, size_t); (LEGACY )
void   bcopy(const void *, void *, size_t); (LEGACY )
void   bzero(void *, size_t); (LEGACY )
int    ffs(int);
char  *index(const char *, int); (LEGACY )
char  *rindex(const char *, int); (LEGACY )
int    strcasecmp(const char *, const char *);
int    strncasecmp(const char *, const char *, size_t);

这些都是非标准函数,这也解释了没有错误,我很难找到一个好的参考,但是strings.h的BSD系统版本过去也包含string.h

于 2013-11-04T03:25:20.477 回答
0

原来代码是#include <stdlib.h>,我的输出是:

在此处输入图像描述

解决方案:

更改stdlib.hstdio.h,警告消失了

简而言之,编译器试图告诉您它找不到函数的声明。这是 a) 的结果。不包含头文件 b) 错误的头文件名 .eg"sring.h"

于 2016-08-06T22:12:44.210 回答