summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-12-22 20:01:04 -0500
committerIan Moffett <ian@osmora.org>2025-12-22 20:01:04 -0500
commita92a1b8e6d7537d37a5e9fb3b56680b3d5a1542b (patch)
tree7bb9be2dfbcf1b2d3dc7a823baedde857bd0a9cd /usr
parent7e1c513582fd05bd85f8f4dfa73e374f3ff351ec (diff)
usr: sdk: Add units.h
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr')
-rw-r--r--usr/sdk/inc/sdk/units.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/usr/sdk/inc/sdk/units.h b/usr/sdk/inc/sdk/units.h
new file mode 100644
index 0000000..ae60710
--- /dev/null
+++ b/usr/sdk/inc/sdk/units.h
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2025, Ian Moffett.
+ * Provided under the BSD-3 clause.
+ */
+
+#ifndef _SDK_UNITS_H_
+#define _SDK_UNITS_H_ 1
+
+/* Storage size units */
+#define UNIT_GIB 0x40000000
+#define UNIT_MIB 0x100000
+
+#endif /* !_SDK_UNITS_H_ */