aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/load.c
blob: 0e9327340a8c81016d8106c239dd4b581d1e90b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <fs/ext2.h>
#include <fs/load.h>
#include <lib/lib.h>
#include <lib/stdio.h>
#include <system.h>

void load_binaries()
{
	font = (struct font *)read_file("/bin/font");

	log("Successfully loaded binaries");
}