summaryrefslogtreecommitdiff
path: root/libc/error
diff options
context:
space:
mode:
authorRobert de Bath <rdebath@poboxes.com>1996-11-03 22:33:35 +0100
committerLubomir Rintel <lkundrak@v3.sk>2013-10-23 23:33:35 +0200
commitc218c617b5be443b7968308506969ad2b726d73c (patch)
tree0051f396af56133d24fcf2ab757fabc78c1a09bf /libc/error
parent0936b9aeab611665645a4e6bafaded7ca76dd189 (diff)
parent0d2fbe9b1bd284ce2cad55be17e8f2c896031a25 (diff)
downloaddev86-c218c617b5be443b7968308506969ad2b726d73c.tar.gz
Import Dev86src-0.0.8.tar.gzv0.0.8
Diffstat (limited to 'libc/error')
-rw-r--r--libc/error/Makefile2
-rw-r--r--libc/error/sys_errlist.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/libc/error/Makefile b/libc/error/Makefile
index bcc9287..dc9b98e 100644
--- a/libc/error/Makefile
+++ b/libc/error/Makefile
@@ -5,7 +5,9 @@
TOP=..
include $(TOP)/Make.defs
+ifeq ($(LIB_OS),ELKS)
OBJ=error.o sys_errlist.o perror.o sys_siglist.o __assert.o
+endif
all: $(OBJ)
diff --git a/libc/error/sys_errlist.c b/libc/error/sys_errlist.c
index 1d9e65b..79a40bf 100644
--- a/libc/error/sys_errlist.c
+++ b/libc/error/sys_errlist.c
@@ -23,7 +23,6 @@ int sys_nerr = NR_ERRORS;
loc 1 ! Make sure the pointer is in the correct segment
auto_func: ! Label for bcc -M to work.
.word _init_vars ! Pointer to the autorun function
- .word no_op ! Space filler cause segs are padded to 4 bytes.
.text ! So the function after is also in the correct seg.
#endasm