string.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_STRING_H
  2. #define _ASM_IA64_STRING_H
  3. /*
  4.  * Here is where we want to put optimized versions of the string
  5.  * routines.
  6.  *
  7.  * Copyright (C) 1998-2000, 2002 Hewlett-Packard Co
  8.  * David Mosberger-Tang <davidm@hpl.hp.com>
  9.  */
  10. #include <linux/config.h> /* remove this once we remove the A-step workaround... */
  11. #define __HAVE_ARCH_STRLEN 1 /* see arch/ia64/lib/strlen.S */
  12. #define __HAVE_ARCH_MEMSET 1 /* see arch/ia64/lib/memset.S */
  13. #define __HAVE_ARCH_MEMCPY 1 /* see arch/ia64/lib/memcpy.S */
  14. #define __HAVE_ARCH_BCOPY 1 /* see arch/ia64/lib/memcpy.S */
  15. extern __kernel_size_t strlen (const char *);
  16. extern void *memcpy (void *, const void *, __kernel_size_t);
  17. extern void *memset (void *, int, __kernel_size_t);
  18. #endif /* _ASM_IA64_STRING_H */