changed system-call to avoid namespace pollution
This commit is contained in:
parent
a42999afab
commit
b2cbaa46d5
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@
|
||||||
#include <system.h>
|
#include <system.h>
|
||||||
#define SBRK sys_break
|
#define SBRK sys_break
|
||||||
#else
|
#else
|
||||||
#define SBRK sbrk
|
#define SBRK _sbrk
|
||||||
#define ILL_BREAK (void *)(-1) /* funny failure value */
|
#define ILL_BREAK (void *)(-1) /* funny failure value */
|
||||||
#endif
|
#endif
|
||||||
extern void *SBRK(int incr);
|
extern void *SBRK(int incr);
|
||||||
|
|
Loading…
Add table
Reference in a new issue