diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2014-07-12 21:54:59 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2014-07-12 21:54:59 +0000 |
commit | 55a05995977ff661af3b9e512515abc461867ca5 (patch) | |
tree | d4bb8dcc9cdf6a4c586530a373c0849e4080678a /sys/arch/i386/stand/boot | |
parent | 131b9116e2e83a04a7aab4b8596774aa49ed6935 (diff) |
move getchar() into libsa where applicable
ok miod@
Diffstat (limited to 'sys/arch/i386/stand/boot')
-rw-r--r-- | sys/arch/i386/stand/boot/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/boot/Makefile b/sys/arch/i386/stand/boot/Makefile index 04d92fedb76..d3ef25a9c25 100644 --- a/sys/arch/i386/stand/boot/Makefile +++ b/sys/arch/i386/stand/boot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.54 2013/12/28 15:16:28 jsing Exp $ +# $OpenBSD: Makefile,v 1.55 2014/07/12 21:54:58 jasper Exp $ COPTS?= MAN?= boot.8 @@ -42,8 +42,9 @@ SRCS+= softraid.c .endif .PATH: ${S}/lib/libsa -SRCS+= alloc.c ctime.c exit.c memcmp.c memcpy.c memset.c printf.c snprintf.c \ - strcmp.c strerror.c strlen.c strncmp.c strncpy.c strtol.c strtoll.c +SRCS+= alloc.c ctime.c exit.c getchar.c memcmp.c memcpy.c memset.c printf.c \ + snprintf.c strcmp.c strerror.c strlen.c strncmp.c strncpy.c strtol.c \ + strtoll.c SRCS+= close.c closeall.c cons.c cread.c dev.c disklabel.c dkcksum.c fstat.c \ lseek.c open.c read.c readdir.c stat.c SRCS+= elf32.c elf64.c loadfile.c |