This is an automated email from the ASF dual-hosted git repository.
janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
The following commit(s) were added to refs/heads/master by this push:
new 6c6be194b kernel/os_cfg: Remove unused header file
6c6be194b is described below
commit 6c6be194b444fb11c74887de69be92da9804fa77
Author: Wojciech Pietraszewski <[email protected]>
AuthorDate: Wed Jul 3 13:16:52 2024 +0200
kernel/os_cfg: Remove unused header file
Removes `os_cfg.h` as it does not contain any actual code or configuration
settings.
---
kernel/os/include/os/os.h | 1 -
kernel/os/include/os/os_cfg.h | 33 ---------------------------------
2 files changed, 34 deletions(-)
diff --git a/kernel/os/include/os/os.h b/kernel/os/include/os/os.h
index b55888643..79c8fd798 100644
--- a/kernel/os/include/os/os.h
+++ b/kernel/os/include/os/os.h
@@ -121,7 +121,6 @@ void os_system_reset(void);
#include "os/endian.h"
#include "os/os_callout.h"
-#include "os/os_cfg.h"
#include "os/os_cputime.h"
#include "os/os_dev.h"
#include "os/os_error.h"
diff --git a/kernel/os/include/os/os_cfg.h b/kernel/os/include/os/os_cfg.h
deleted file mode 100644
index 15f43d541..000000000
--- a/kernel/os/include/os/os_cfg.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-
-#ifndef _OS_CFG_H_
-#define _OS_CFG_H_
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* _OS_CFG_H_ */