mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-13 18:17:17 +03:00
8 lines
108 B
C
8 lines
108 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#define LIMINE_VERSION "@LIMINE_VERSION@"
|
||
|
|
||
|
int main(void) {
|
||
|
puts(LIMINE_VERSION);
|
||
|
}
|