summaryrefslogtreecommitdiffstats
path: root/include/asm-mips64
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-01-16 01:37:19 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-01-16 01:37:19 +0000
commit6181fecaeccd0bf111d6196ad63bec0f6ba90438 (patch)
tree61e4cf111540c2d0a6aaaaecde3c142434867e70 /include/asm-mips64
parentff460746296634c87227a834fae561255b7fb2fc (diff)
Fix memset which was misstreating certain argument cases.
Diffstat (limited to 'include/asm-mips64')
-rw-r--r--include/asm-mips64/string.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-mips64/string.h b/include/asm-mips64/string.h
index 5f0b4e68d..45680b78a 100644
--- a/include/asm-mips64/string.h
+++ b/include/asm-mips64/string.h
@@ -1,4 +1,4 @@
-/* $Id: string.h,v 1.2 1999/08/21 22:19:18 ralf Exp $
+/* $Id: string.h,v 1.3 1999/12/04 03:59:12 ralf Exp $
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
@@ -12,8 +12,8 @@
#ifndef _ASM_STRING_H
#define _ASM_STRING_H
-#undef __HAVE_ARCH_MEMSET
-//extern void *memset(void *__s, int __c, size_t __count);
+#define __HAVE_ARCH_MEMSET
+extern void *memset(void *__s, int __c, size_t __count);
#undef __HAVE_ARCH_MEMCPY
//extern void *memcpy(void *__to, __const__ void *__from, size_t __n);