警告:函数'fsync'的隐式声明在C99中无效

时间:2012-12-19 18:36:26

标签: c macos compilation posix clang

由于某种原因,当我编译代码时,编译器找不到fsync和truncate的原型。我明白了:

cc -c -Wall -Wno-overflow  -pedantic -std=c99 -I/Users/matt/Programming/BitEagle_Projects/cbitcoin/include -I/usr/local/ssl/include -I/opt/local/include -O3 -arch i386 -arch x86_64 -D_POSIX_SOURCE -fPIC dependencies/storage/CBBlockChainStorage.c -o build/CBBlockChainStorage.o
dependencies/storage/CBBlockChainStorage.c:154:6: warning: implicit declaration of function 'fsync'
      is invalid in C99 [-Wimplicit-function-declaration]
                if(fsync(indexAppend)){
                   ^
dependencies/storage/CBBlockChainStorage.c:649:6: warning: implicit declaration of function
      'truncate' is invalid in C99 [-Wimplicit-function-declaration]
        if (truncate(filename, CBArrayToInt32(data, 0))) {
            ^

如何删除这些警告我需要做什么?我包括unistd.h。这是在OSX上使用clang:

$ cc --version
Apple clang version 4.0 (tags/Apple/clang-421.0.60) (based on LLVM 3.1svn)
Target: x86_64-apple-darwin12.2.0
Thread model: posix

谢谢。

1 个答案:

答案 0 :(得分:6)

如果您使用-std=c99,系统标头将尝试提供与C标准兼容的声明/宏命名空间,该标准不包括POSIX或其他标准或非标准扩展的任何其他功能。您需要定义适当的功能测试宏才能获得它们。例如,将-D_POSIX_C_SOURCE=200809L放在命令行上或在源文件中定义它。