15 lines
219 B
C
15 lines
219 B
C
//
|
|
// Created by rick on 13-08-21.
|
|
//
|
|
|
|
#include <myke/util/init.h>
|
|
|
|
void tmpfs_init() {
|
|
}
|
|
|
|
INIT_FUNCTION(100) = {
|
|
.name = "tmpfs",
|
|
.stage = INIT_STAGE_AFTER_BOOT_PRE_INIT,
|
|
.init = tmpfs_init,
|
|
};
|