6

我尝试在 Ubuntu 13.04(64 位)上使用gcc 4.7.3和编译以下代码:clang 3.2.1

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

int main() {
    putenv("SDL_VIDEO_CENTERED=1");

    return 0;
}

我希望putenvstdlib.h标题中声明,但我收到以下警告:

test.c: In function ‘main’:
test.c:6:5: warning: implicit declaration of function ‘putenv’ [-Wimplicit-function-declaration]

为什么我的标题中缺少此函数的声明?

4

1 回答 1

7

您必须定义某些宏。看man 3 putenv

NAME
  putenv - change or add an environment variable

SYNOPSIS
   #include <stdlib.h>

   int putenv(char *string);

Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

   putenv(): _SVID_SOURCE || _XOPEN_SOURCE

尝试定义 include_SVID_SOURCE_XOPEN_SOURCE之前定义stdlib.h,如下所示:

#define _XOPEN_SOURCE
#include <stdlib.h>

或者在编译时(使用-D),例如:

gcc -o output file.c -D_XOPEN_SOURCE
于 2013-05-31T18:40:55.213 回答