Added VFS and Ext2 support. Optimized attributes of methods to improve code highlighting. Printf attribute, malloc attribute, etc.
15 lines
203 B
C
15 lines
203 B
C
//
|
|
// Created by rick on 10-03-21.
|
|
//
|
|
|
|
#ifndef NEW_KERNEL_TIME_H
|
|
#define NEW_KERNEL_TIME_H
|
|
|
|
typedef uint32_t time_t;
|
|
|
|
struct timespec {
|
|
time_t tv_sec;
|
|
long tv_nsec;
|
|
};
|
|
#endif //NEW_KERNEL_TIME_H
|