NJU-ProjectN/nanos-lite 2a141760e31be246a7316942293a97873925bc2f Makefile: use header files in newlib-navy
11 lines
125 B
C
11 lines
125 B
C
#ifndef __FS_H__
|
|
#define __FS_H__
|
|
|
|
#include <common.h>
|
|
|
|
#ifndef SEEK_SET
|
|
enum {SEEK_SET, SEEK_CUR, SEEK_END};
|
|
#endif
|
|
|
|
#endif
|