View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0007667 | CentOS-7 | libesmtp | public | 2014-10-03 14:30 | 2014-10-03 14:30 |
Reporter | danadam | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | new | Resolution | open | ||
Summary | 0007667: libesmtp.h requires stddef.h to be included manually | ||||
Description | ]$ cat > reproduce.c <<EOF #include <libesmtp.h> int main() { return 0; } EOF ]$ gcc reproduce.c In file included from reproduce.c:1:0: /usr/include/libesmtp.h:47:30: error: unknown type name ‘size_t’ int smtp_version (void *buf, size_t len, int what); ^ /usr/include/libesmtp.h:138:45: error: unknown type name ‘size_t’ char *smtp_strerror (int error, char buf[], size_t buflen); ]$ cat > reproduce.c <<EOF #include <stddef.h> #include <libesmtp.h> int main() { return 0; } EOF ]$ gcc reproduce.c ]$ | ||||
Tags | No tags attached. | ||||
abrt_hash | |||||
URL | |||||
Date Modified | Username | Field | Change |
---|---|---|---|
2014-10-03 14:30 | danadam | New Issue |