diff options
-rw-r--r-- | arch/sparc/include/asm/asm-prototypes.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/asm-prototypes.h b/arch/sparc/include/asm/asm-prototypes.h new file mode 100644 index 000000000000..d381e11c5dbb --- /dev/null +++ b/arch/sparc/include/asm/asm-prototypes.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. | ||
3 | */ | ||
4 | |||
5 | #include <asm/xor.h> | ||
6 | #include <asm/checksum.h> | ||
7 | #include <asm/trap_block.h> | ||
8 | #include <asm/uaccess.h> | ||
9 | #include <asm/atomic.h> | ||
10 | #include <asm/ftrace.h> | ||
11 | #include <asm/cacheflush.h> | ||
12 | #include <asm/oplib.h> | ||
13 | #include <linux/atomic.h> | ||
14 | |||
15 | void *__memscan_zero(void *, size_t); | ||
16 | void *__memscan_generic(void *, int, size_t); | ||
17 | void *__bzero(void *, size_t); | ||
18 | void VISenter(void); /* Dummy prototype to supress warning */ | ||
19 | #undef memcpy | ||
20 | #undef memset | ||
21 | void *memcpy(void *dest, const void *src, size_t n); | ||
22 | void *memset(void *s, int c, size_t n); | ||
23 | typedef int TItype __attribute__((mode(TI))); | ||
24 | TItype __multi3(TItype a, TItype b); | ||