16 lines
368 B
C
16 lines
368 B
C
|
/**************************************
|
||
|
* VulcanOS Kernel *
|
||
|
* Developed by Marco 'icebit' Cetica *
|
||
|
* (c) 2019-2021 *
|
||
|
* Released under GPLv3 *
|
||
|
* https://github.com/ice-bit/iceOS *
|
||
|
***************************************/
|
||
|
#ifndef FETCH_H
|
||
|
#define FETCH_H
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void system_fetcher();
|
||
|
|
||
|
#endif
|