mirror of
https://github.com/limine-bootloader/limine
synced 2025-03-04 00:41:40 +03:00
10 lines
128 B
C
10 lines
128 B
C
#ifndef __MENU_H__
|
|
#define __MENU_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
__attribute__((noreturn))
|
|
void menu(bool timeout_enabled);
|
|
|
|
#endif
|