我在文件中使用此代码inet_ntop.h
。在这里我宣布.const char *inet_ntop
#ifndef HAVE_INET_NTOP
#if defined(__cplusplus)
extern "C" {
#endif
const char *inet_ntop(int af, const void *src, char *dst, size_t size);
#if defined(__cplusplus)
}
#endif
#endif /* HAVE_INET_NTOP */
在编译时,我收到“冲突类型inet_ntop
”错误。
这在 Xcode 3.2.3 中有效,但在 Xcode 4.5 中使用同一应用程序中的代码会给我这个冲突错误。我该如何解决?