mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-07 07:56:19 +00:00
15 lines
143 B
C
15 lines
143 B
C
#include <string.h>
|
|
static void *rrr;
|
|
static void **p_rrr;
|
|
|
|
static void foo(void)
|
|
{
|
|
rrr = strdup("bbb");
|
|
}
|
|
|
|
int main()
|
|
{
|
|
foo();
|
|
return 0;
|
|
}
|