diff options
Diffstat (limited to 'include/constants.h')
| -rw-r--r-- | include/constants.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/constants.h b/include/constants.h new file mode 100644 index 0000000..7d88060 --- /dev/null +++ b/include/constants.h @@ -0,0 +1,18 @@ +/* + * include/constants.h + * + * Configuration constant values for liballoc + * CISC 301 -- Operating Systems, Project 3 + * + * Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu> + * + * Distributed under the Modified BSD License + * + */ +#ifndef H_LIBALLOC_CONST +#define H_LIBALLOC_CONST + +#define MAGIC_NUMBER 0x123456789 +#define ALIGNMENT 16 + +#endif |