diff --git a/common/misc.c b/common/misc.c index 8133e687b..0d193664c 100644 --- a/common/misc.c +++ b/common/misc.c @@ -23,10 +23,16 @@ void *sbrk (ptrdiff_t increment) ulong old = mem_malloc_brk; ulong new = old + increment; - if ((new < mem_malloc_start) || (new > mem_malloc_end)) { - return (NULL); + if ((new < mem_malloc_start) || (new > mem_malloc_end)) { + return (NULL); } mem_malloc_brk = new; return ((void *) old); } + +void perror(char *s, int errno) +{ + printf("%s failed with %d\n", s, errno); +} + diff --git a/include/errno.h b/include/errno.h new file mode 100644 index 000000000..aee5c78ff --- /dev/null +++ b/include/errno.h @@ -0,0 +1,6 @@ +#ifndef __ERRNO_H +#define __ERRNO_H + +void perror(const char *s, int errno); + +#endif /* __ERRNO_H */