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/cdboot | |
parent | 131b9116e2e83a04a7aab4b8596774aa49ed6935 (diff) |
move getchar() into libsa where applicable
ok miod@
Diffstat (limited to 'sys/arch/i386/stand/cdboot')
-rw-r--r-- | sys/arch/i386/stand/cdboot/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/arch/i386/stand/cdboot/Makefile b/sys/arch/i386/stand/cdboot/Makefile index 3457d5e50f0..5c0f6f7ed59 100644 --- a/sys/arch/i386/stand/cdboot/Makefile +++ b/sys/arch/i386/stand/cdboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.20 2013/12/28 02:51:07 deraadt Exp $ +# $OpenBSD: Makefile,v 1.21 2014/07/12 21:54:58 jasper Exp $ MAN= cdboot.8 @@ -26,8 +26,9 @@ SRCS+= softraid.c SRCS+= bootarg.c cmd.c vars.c .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 |