diff options
Diffstat (limited to 'sys/i386/boot/cdboot/boot.h')
-rw-r--r-- | sys/i386/boot/cdboot/boot.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/i386/boot/cdboot/boot.h b/sys/i386/boot/cdboot/boot.h index b71f457..4604c08 100644 --- a/sys/i386/boot/cdboot/boot.h +++ b/sys/i386/boot/cdboot/boot.h @@ -24,7 +24,7 @@ * the rights to redistribute these changes. * * from: Mach, Revision 2.2 92/04/04 11:35:03 rpd - * $Id$ + * $Id: boot.h,v 1.1 1997/07/11 05:52:38 joerg Exp $ */ /* * Extensions for El Torito CD-ROM booting: @@ -155,7 +155,8 @@ void printf(const char *format, ...); void putchar(int c); void delay1ms(void); int gets(char *buf); -int strncasecmp(const char *s1, const char *s2, size_t s); +int strcasecmp(const char *s1, const char *s2); +int strcmp(const char *s1, const char *s2); void bcopy(const void *from, void *to, size_t len); void twiddle(void); |