diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/signal/Makefile.in | 2 | ||||
-rw-r--r-- | libc/signal/raise.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/libc/signal/Makefile.in b/libc/signal/Makefile.in index 8b09ad950..f272d3c28 100644 --- a/libc/signal/Makefile.in +++ b/libc/signal/Makefile.in @@ -26,6 +26,8 @@ SIGNAL_SRC := $(patsubst %.c,$(SIGNAL_DIR)/%.c,$(CSRC)) SIGNAL_OBJ := $(patsubst %.c,$(SIGNAL_OUT)/%.o,$(CSRC)) libc-y += $(SIGNAL_OBJ) +libc-a-y += $(SIGNAL_OBJ) +libc-so-y += $(SIGNAL_OBJ:.o=.os) objclean-y += signal_objclean diff --git a/libc/signal/raise.c b/libc/signal/raise.c index 9761ac162..28e511635 100644 --- a/libc/signal/raise.c +++ b/libc/signal/raise.c @@ -1,6 +1,5 @@ /* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk> - * This file is part of the Linux-8086 C library and is distributed - * under the GNU Library General Public License. + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ #include <unistd.h> |