mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-09 00:46:12 +00:00
8 lines
110 B
C
8 lines
110 B
C
#include "libcompat.h"
|
|
|
|
char *strdup(const char *str CK_ATTRIBUTE_UNUSED)
|
|
{
|
|
assert(0);
|
|
return NULL;
|
|
}
|