summaryrefslogtreecommitdiffstats
path: root/cpukit/libdl/rtl-bit-alloc.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2022-03-18 09:40:55 -0500
committerJoel Sherrill <joel@rtems.org>2022-03-22 11:34:23 -0500
commit5dec08934fe44c8483795147e3e6f9480660f099 (patch)
treed20c69745cfa77b6cbebdc41f00cf4cc0bbb634a /cpukit/libdl/rtl-bit-alloc.c
parentcpukit/libfs/src/defaults: Change license to BSD-2 (diff)
downloadrtems-5dec08934fe44c8483795147e3e6f9480660f099.tar.bz2
cpukit/libdl: Manual file header reordering (SPDX, Doxygen, Copyright)
Updates #3053.
Diffstat (limited to 'cpukit/libdl/rtl-bit-alloc.c')
-rw-r--r--cpukit/libdl/rtl-bit-alloc.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/cpukit/libdl/rtl-bit-alloc.c b/cpukit/libdl/rtl-bit-alloc.c
index 4570a6d0f8..7014dc8b62 100644
--- a/cpukit/libdl/rtl-bit-alloc.c
+++ b/cpukit/libdl/rtl-bit-alloc.c
@@ -1,5 +1,17 @@
/* SPDX-License-Identifier: BSD-2-Clause */
+/**
+ * @file
+ *
+ * @ingroup rtems_rtld
+ *
+ * @brief RTEMS Run-Time Link Editor Bit Allocator
+ *
+ * A configurable allocator for small peices of memory where embedding
+ * control blocks into the memory are not viable. The amount of memory
+ * should be small and the minimum allocator a 32bit work or higher.
+ */
+
/*
* COPYRIGHT (c) 2019 Chris Johns <chrisj@rtems.org>
*
@@ -24,17 +36,6 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
-/**
- * @file
- *
- * @ingroup rtems_rtld
- *
- * @brief RTEMS Run-Time Link Editor Bit Allocator
- *
- * A configurable allocator for small peices of memory where embedding
- * control blocks into the memory are not viable. The amount of memory
- * should be small and the minimum allocator a 32bit work or higher.
- */
#ifdef HAVE_CONFIG_H
#include "config.h"