16 lines
211 B
C
16 lines
211 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#include <kernel/platform.h>
|
|
|
|
|
|
/* init */
|
|
int init(void)
|
|
{
|
|
platform_init();
|
|
return 0;
|
|
}
|