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: [email protected]
ReportedBy: [email protected]
../.././gcc/system.h:394: error: conflicting types for 'sbrk'
it uses (int) as argument, but
according to man sbrk:
void *sbrk(intptr_t increment);
