18 lines
216 B
C
18 lines
216 B
C
|
|
// devfs.h
|
|
// device filesystem for HOS
|
|
// Author: Josh Holtrop
|
|
// Date: 06/03/04
|
|
// Modified: 06/03/04
|
|
|
|
#ifndef __HOS_DEVFS__
|
|
#define __HOS_DEVFS__ __HOS_DEVFS__
|
|
|
|
#include "Device.h"
|
|
|
|
void devfs_init();
|
|
|
|
|
|
#endif
|
|
|