aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/alloc.h2
-rw-r--r--include/alloc_header.h4
-rw-r--r--include/constants.h2
-rw-r--r--include/free_list.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/include/alloc.h b/include/alloc.h
index 82a4b7b..6374b3a 100644
--- a/include/alloc.h
+++ b/include/alloc.h
@@ -5,7 +5,7 @@
* CISC 301 -- Operating Systems, Project 3
*
* Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
- *
+ *
* Distributed under the Modified BSD License
*
*/
diff --git a/include/alloc_header.h b/include/alloc_header.h
index bf4716c..381f41b 100644
--- a/include/alloc_header.h
+++ b/include/alloc_header.h
@@ -5,15 +5,15 @@
* CISC 301 -- Operating Systems, Project 3
*
* Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
- *
+ *
* Distributed under the Modified BSD License
*
*/
#ifndef H_LIBALLOC_HEADER
#define H_LIBALLOC_HEADER
-#include <stdlib.h>
#include <assert.h>
+#include <stdlib.h>
#include "constants.h"
diff --git a/include/constants.h b/include/constants.h
index 8cb2db7..5f0cb6a 100644
--- a/include/constants.h
+++ b/include/constants.h
@@ -5,7 +5,7 @@
* CISC 301 -- Operating Systems, Project 3
*
* Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
- *
+ *
* Distributed under the Modified BSD License
*
*/
diff --git a/include/free_list.h b/include/free_list.h
index 1993aa7..8eab36d 100644
--- a/include/free_list.h
+++ b/include/free_list.h
@@ -5,7 +5,7 @@
* CISC 301 -- Operating Systems, Project 3
*
* Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
- *
+ *
* Distributed under the Modified BSD License
*
*/
@@ -14,8 +14,8 @@
#include <stdlib.h>
-#include "constants.h"
#include "alloc_header.h"
+#include "constants.h"
typedef struct free_nd {
size_t size;