summaryrefslogtreecommitdiff
path: root/src/neon/neonmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/neon/neonmem.h')
-rw-r--r--src/neon/neonmem.h24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/neon/neonmem.h b/src/neon/neonmem.h
index 626abec..2e82ed0 100644
--- a/src/neon/neonmem.h
+++ b/src/neon/neonmem.h
@@ -26,24 +26,22 @@ ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-**************************************************************************/
-
+**************************************************************************/
+
#ifndef _NEON_MEMCPY_HEADER_
#define _NEON_MEMCPY_HEADER_
-
+
#include <stddef.h>
-
+
#ifdef memcpy
#undef memcpy
#endif
-
+
#define memcpy memcpy_neon
+ void * memcpy_neon(void *dst, const void *src, size_t count);
+ int move_pixels(void *bits, int bpp, int stride, int img_width,
+ int img_height, int sx, int sy, int dx, int dy, int w,
+ int h);
-void *
-memcpy_neon (void *dst, const void *src, size_t count);
-
-int
-move_pixels (void *bits, int bpp, int stride, int img_width, int img_height,
- int sx, int sy, int dx, int dy, int w, int h);
-#endif /* _NEON_MEMCPY_HEADER_ */
-
+#endif /* _NEON_MEMCPY_HEADER_ */
+