/* * include/constants.h * * Configuration constant values for liballoc * CISC 301 -- Operating Systems, Project 3 * * Copyright (C) 2025 Douglas B. Rumbaugh * * Distributed under the Modified BSD License * */ #ifndef H_LIBALLOC_CONST #define H_LIBALLOC_CONST #define MAGIC_NUMBER 0x123456789 #define ALIGNMENT 16 #define SPLIT_THRESHOLD 64 #endif