mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
Start fixing things up to build with a proper cross-compiler.
This commit is contained in:
parent
42342d2337
commit
6788dcdb58
Notes:
sideshowbarker
2024-07-19 15:38:34 +09:00
Author: https://github.com/awesomekling
Commit: 6788dcdb58
4 changed files with 41 additions and 44 deletions
|
@ -1,15 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
#include <Kernel/types.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
void memcpy(void*, const void*, dword);
|
||||
void strcpy(char*, const char*);
|
||||
static_assert(sizeof(size_t) == 4);
|
||||
|
||||
void* memcpy(void*, const void*, size_t);
|
||||
char* 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);
|
||||
void* memset(void*, int, size_t);
|
||||
char *strdup(const char*);
|
||||
int memcmp(const void*, const void*, size_t);
|
||||
char* strrchr(const char* str, int ch);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue