In order to bring consistency in-tree, migrate all tests to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to #45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
15 lines
302 B
C
15 lines
302 B
C
/*
|
|
* Copyright (c) 2020 Friedt Professional Engineering Services, Inc
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef TEST_SOCKETPAIR_THREAD_H_
|
|
#define TEST_SOCKETPAIR_THREAD_H_
|
|
|
|
#include <zephyr/kernel.h>
|
|
|
|
extern struct k_work_q test_socketpair_work_q;
|
|
|
|
#endif /* TEST_SOCKETPAIR_THREAD_H_ */
|