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
commit 2e663eda36
Notes: sideshowbarker 2024-07-19 15:50:30 +09:00
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);