使用未声明的标识符'ENOMEM'

时间:2018-05-02 22:04:46

标签: c xcode libarchive

我在我的xcode项目中使用“libarchive”但是得到了以下错误

if (bytes_read < mine->block_size && ferror(mine->f)) {
    archive_set_error(a, errno, "Error reading file");
}

使用未声明的标识符'errno'

if (mine == NULL || b == NULL) {
    archive_set_error(a, ENOMEM, "No memory");
    free(mine);
    free(b);
    return (ARCHIVE_FATAL);
}

使用未声明的标识符'ENOMEM'

if (format_number(archive_entry_uid(entry), h + USTAR_uid_offset, USTAR_uid_size, USTAR_uid_max_size, strict)) {
    archive_set_error(&a->archive, ERANGE, "Numeric user ID too large");
    ret = ARCHIVE_FAILED;
}

使用未声明的标识符'ERANGE'

   write_nulls(struct archive_write *a, size_t padding)
{
  int ret;
  size_t to_write;

   while (padding > 0) {
    to_write = padding < a->null_length ? padding : a->null_length;
    ret = (a->compressor.write)(a, a->nulls, to_write);
    if (ret != ARCHIVE_OK)
    return (ret);
    padding -= to_write;
}
return (ARCHIVE_OK);}

'struct archive_write'

中没有名为'compressor'的成员

我如何解决这个错误?

screenshot of error

https://github.com/Tarsnap/tarsnap/blob/master/libarchive/archive_write_set_format_ustar.c

1 个答案:

答案 0 :(得分:3)

ENONEMERANGEerrno.h中定义的宏。至于errno,它是在发生一些错误时设置的整数变量。

因此,要访问这些变量/定义,您需要在文件中添加#include <errno.h>

有关更多文档:man errno