blob: 88677288e7cc032be67108250ad2be7b34a1e7e3 [file] [log] [blame]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef _TEST_SYSCALLS_H_
#define _TEST_SYSCALLS_H_
#include <zephyr.h>
__syscall int string_alloc_copy(char *src);
__syscall int string_copy(char *src);
__syscall int to_copy(char *dest);
__syscall size_t string_nlen(char *src, size_t maxlen, int *err);
__syscall unsigned int more_args(unsigned int arg1, unsigned int arg2,
unsigned int arg3, unsigned int arg4,
unsigned int arg5, unsigned int arg6,
unsigned int arg7);
#include <syscalls/test_syscalls.h>
#endif /* _TEST_SYSCALLS_H_ */