limine: Add missing forward declaration of struct limine_smp_info

This commit is contained in:
mintsuki 2022-03-26 14:28:20 +01:00
parent 88a2cc6cd8
commit e25dd260fd
2 changed files with 4 additions and 0 deletions

View File

@ -368,6 +368,8 @@ Notes: The presence of this request will prompt the bootloader to bootstrap
the secondary processors. This will not be done if this request is not present. the secondary processors. This will not be done if this request is not present.
```c ```c
struct limine_smp_info;
typedef void (*limine_goto_address)(struct limine_smp_info *); typedef void (*limine_goto_address)(struct limine_smp_info *);
struct limine_smp_info { struct limine_smp_info {

View File

@ -143,6 +143,8 @@ struct limine_5_level_paging_request {
#define LIMINE_SMP_X2APIC (1 << 0) #define LIMINE_SMP_X2APIC (1 << 0)
struct limine_smp_info;
typedef void (*limine_goto_address)(struct limine_smp_info *); typedef void (*limine_goto_address)(struct limine_smp_info *);
struct limine_smp_info { struct limine_smp_info {