1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

Kernel: Don't disable interrupts to access the system hostname.

This commit is contained in:
Andreas Kling 2019-02-07 10:29:26 +01:00
parent 458706c4cf
commit 2e663eda36
3 changed files with 18 additions and 16 deletions

View file

@ -6,6 +6,7 @@ extern "C" {
void memcpy(void*, const void*, dword);
void strcpy(char*, const char*);
char* strncpy(char*, const char*, size_t);
int strcmp(char const*, const char*);
size_t strlen(const char*);
void *memset(void*, byte, dword);