kern

diff src/bdev.h @ 91:f83f50c17c3b

continuing with the fs added strtol and strstr to klibc
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Dec 2011 15:29:54 +0200
parents 7ff2b4971216
children 083849df660b
line diff
     1.1 --- a/src/bdev.h	Fri Dec 09 13:44:15 2011 +0200
     1.2 +++ b/src/bdev.h	Fri Dec 09 15:29:54 2011 +0200
     1.3 @@ -16,4 +16,6 @@
     1.4  int blk_read(struct block_device *bdev, uint32_t blk, void *buf);
     1.5  int blk_write(struct block_device *bdev, uint32_t blk, void *buf);
     1.6  
     1.7 +dev_t bdev_by_name(const char *name);
     1.8 +
     1.9  #endif	/* BDEV_H_ */