#include; -- Xcode
我有一个有趣的问题,我无法将 malloc.h 包含在我的项目中。
我需要 malloc.h 用于 Paul Nettle 的 mmgr 工具(我不热衷于使用工具)
问题是我找不到 memalign 的系统库。
Xcode 不断失败,因为它无法定义和执行此操作。我也不能。
还有其他人看到过这个吗?!
I have an interesting problem where I can't include malloc.h in my project.
I need malloc.h for Paul Nettle's mmgr tool (I'm not keen on using instruments)
Problem is I can't find the system library for memalign.
Xcode keeps failing because it cannot this definition & neither can I.
Anyone else seen this?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只需要使用
malloc
,那么您可以像这样从stdlib中获取它:否则,您可以像这样直接调用
malloc.h
:编辑:< /strong>
stdlib.h 中存在
posix_memalign()
。实现看起来像:也许你可以为此创建一个别名并使用它?
If you just need to use
malloc
then you can grab it from the stdlib like so:Otherwise, you can directly call
malloc.h
like so:EDIT:
A
posix_memalign()
exists instdlib.h
. The implementation looks like:Perhaps you can make an alias to this and use it?