Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/host/common/AddrList.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

// TODO
// mock AddrList with POSIX mock API
// later: real AddrList will work with lwIP API
4 changes: 4 additions & 0 deletions tests/host/sys/pgmspace.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,9 @@ inline char *strcpy_P(char *dest, const char *src) { return strcpy(dest, src); }
inline size_t strlen_P(const char *s) { return strlen(s); }
inline int vsnprintf_P(char *str, size_t size, const char *format, va_list ap) { return vsnprintf(str, size, format, ap); }

#define memcpy_P memcpy
#define strncpy_P strncpy
#define strcmp_P strcmp
#define memccpy_P memccpy

#endif