zephyr/tests/bluetooth/ctrl_user_ext/src/main.c
Fabio Baltieri def230187b test: fix more legacy #include paths
Add a bunch of missing "zephyr/" prefixes to #include statements in
various test and test framework files.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2022-08-02 16:41:41 +01:00

22 lines
458 B
C

/* main.c - Application main entry point */
/*
* Copyright (c) 2015-2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/types.h>
#include <stddef.h>
#include <zephyr/sys/printk.h>
#include <zephyr/ztest.h>
#include <zephyr/bluetooth/bluetooth.h>
ZTEST_SUITE(test_bluetooth, NULL, NULL, NULL, NULL, NULL);
ZTEST(test_bluetooth, test_ctrl_user_ext)
{
zassert_false(bt_enable(NULL), "Bluetooth ctrl_user_ext failed");
}