mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-22 23:55:12 +00:00
This also meant I had to implement BSS (SHT_NOBITS) sections in ELFLoader. I also added an strerror() so we can print out what the errors are.
12 lines
114 B
C
12 lines
114 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
extern "C" {
|
|
|
|
size_t strlen(const char*);
|
|
const char* strerror(int errnum);
|
|
|
|
}
|
|
|