devel/adb: new port

This commit is contained in:
c0dev0id
2026-07-08 11:08:05 +02:00
parent a91ecb0f1d
commit 8813f7e720
28 changed files with 786 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
/* OpenBSD compat: add mempcpy (GNU extension) via #include_next wrapper */
#pragma once
#include_next <string.h>
#ifndef mempcpy
static inline void *mempcpy(void *dst, const void *src, size_t n) {
return (char *)memcpy(dst, src, n) + n;
}
#endif