summaryrefslogtreecommitdiff
path: root/include/kernel/hd.h
diff options
context:
space:
mode:
authorJake Mannens <jake72360@gmail.com>2018-07-16 17:36:59 +1000
committerJake Mannens <jake72360@gmail.com>2018-07-16 17:36:59 +1000
commita0aa45ea6f4027dd4080cf1456a2fc5d9e94f87b (patch)
tree43ef7d740633d3a2155f55d108bb62c81bd1df57 /include/kernel/hd.h
parent35685c20a5dc299edf6f3b76ed898a2e71d0e457 (diff)
Included the necessary stdint.h in kernel/hd.h. That header file may now
be used freely throughout the kernel.
Diffstat (limited to 'include/kernel/hd.h')
-rw-r--r--include/kernel/hd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/kernel/hd.h b/include/kernel/hd.h
index 26c705d..292b92e 100644
--- a/include/kernel/hd.h
+++ b/include/kernel/hd.h
@@ -1,6 +1,8 @@
#ifndef _HD_H
#define _HD_H
+#include <stdint.h>
+
int hd_read(void*, uint32_t, uint8_t);
int hd_write(void*, uint32_t, uint8_t);