mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
Finished adding untested shm syscalls. Finished adding untested l4 send/recv helpers Everything compiles. Now going to fix lots of bugs ;-)
9 lines
173 B
C
9 lines
173 B
C
#ifndef __BDEV_H__
|
|
#define __BDEV_H__
|
|
/*
|
|
* This is a mock-up compiled in blockdev buffer, to be used temporarily.
|
|
*/
|
|
|
|
void *vfs_rootdev_open(void);
|
|
#endif/* __BDEV_H__ */
|