This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/50647] New: gcc/system.h: wrong prototype for sbrk
- From: "fzvqedi at v dot mintemail.com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 07 Oct 2011 02:02:24 +0000
- Subject: [Bug c/50647] New: gcc/system.h: wrong prototype for sbrk
- Auto-submitted: auto-generated
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50647
Bug #: 50647
Summary: gcc/system.h: wrong prototype for sbrk
Classification: Unclassified
Product: gcc
Version: 4.5.3
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c
AssignedTo: unassigned@gcc.gnu.org
ReportedBy: fzvqedi@v.mintemail.com
../.././gcc/system.h:394: error: conflicting types for 'sbrk'
it uses (int) as argument, but
according to man sbrk:
void *sbrk(intptr_t increment);