ladybird/LibC/string.h
Andreas Kling 260b14e505 Implement errno in LibC.
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.
2018-10-25 12:06:50 +02:00

12 lines
114 B
C

#pragma once
#include "types.h"
extern "C" {
size_t strlen(const char*);
const char* strerror(int errnum);
}