diff options
author | xengineering <me@xengineering.eu> | 2025-03-18 14:39:56 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2025-03-22 21:20:48 +0100 |
commit | 09722ba833f4af39dc9b5894de15c1e823cb6ea8 (patch) | |
tree | c9a6f96084c71a62cd3a64e9cddcf246389d3a13 | |
parent | 76c2e5393edb38bc553fa1de05aed0a4f46ec325 (diff) | |
download | iot-contact-09722ba833f4af39dc9b5894de15c1e823cb6ea8.tar iot-contact-09722ba833f4af39dc9b5894de15c1e823cb6ea8.tar.zst iot-contact-09722ba833f4af39dc9b5894de15c1e823cb6ea8.zip |
fw: Remove empty main
-rw-r--r-- | fw/CMakeLists.txt | 1 | ||||
-rw-r--r-- | fw/src/main.c | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/fw/CMakeLists.txt b/fw/CMakeLists.txt index eff06f2..1b978b7 100644 --- a/fw/CMakeLists.txt +++ b/fw/CMakeLists.txt @@ -38,7 +38,6 @@ project(iot-contact-fw) target_sources(app PRIVATE - "${CMAKE_CURRENT_SOURCE_DIR}/src/main.c" "${CMAKE_CURRENT_SOURCE_DIR}/src/syslog.c" "${CMAKE_CURRENT_SOURCE_DIR}/src/network.c" "${CMAKE_CURRENT_SOURCE_DIR}/src/http.c" diff --git a/fw/src/main.c b/fw/src/main.c deleted file mode 100644 index faba14b..0000000 --- a/fw/src/main.c +++ /dev/null @@ -1,10 +0,0 @@ -/* - * This Source Code Form is subject to the terms of the Mozilla Public License, - * v. 2.0. If a copy of the MPL was not distributed with this file, You can - * obtain one at https://mozilla.org/MPL/2.0/. - */ - -int main(void) -{ - return 0; -} |