diff options
Diffstat (limited to 'lib/libc/arch/i386/string/strncmp.S')
-rw-r--r-- | lib/libc/arch/i386/string/strncmp.S | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/arch/i386/string/strncmp.S b/lib/libc/arch/i386/string/strncmp.S index 5aa88d7e798..6e480c95f2e 100644 --- a/lib/libc/arch/i386/string/strncmp.S +++ b/lib/libc/arch/i386/string/strncmp.S @@ -1,10 +1,10 @@ -/* $OpenBSD: strncmp.S,v 1.3 2005/08/07 11:30:38 espie Exp $ */ +/* $OpenBSD: strncmp.S,v 1.4 2015/08/31 02:53:56 guenther Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. */ -#include <machine/asm.h> +#include "SYS.h" /* * NOTE: I've unrolled the loop eight times: large enough to make a @@ -111,3 +111,4 @@ L3: movzbl (%eax),%eax /* unsigned comparision */ L4: xorl %eax,%eax popl %ebx ret +END_STRONG(strncmp) |