aboutsummaryrefslogtreecommitdiffstats
path: root/include/constants.h
blob: 7d880607f6d3193f9227525082d2f05a71f158e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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