some slight updates

This commit is contained in:
iiSaLMaN 2019-06-02 12:18:10 +03:00 committed by GitHub
parent e34646ba6c
commit 304819cea5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
#ifndef __DISK_H__
#define __DISK_H__
int read_sector(int, int, int, void *);
#include <stdint.h>
int read_sector(int, void *, uint64_t, size_t);
int read(int, void *, int, size_t);
#endif