VO
Size: a a a
VO
VO
SK
SK
VO
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
char * Default_Handler(void)
{
char *x = malloc(100);
return x;
}
#ifdef __cplusplus
}
#endif
VO
VO
VO
VO
VO
VO
In file included from /usr/include/c++/v1/stdlib.h:91,
from tp.c:1:
/usr/include/c++/v1/__config:1132:6: error: #error "No thread API"
# error "No thread API"
^~~~~
tp.c: In function 'char* Default_Handler()':
tp.c:9:22: error: invalid conversion from 'void*' to 'char*' [-fpermissive]
char *x = malloc(100);
~~~~^~~
SK
A
VO
VO
SK
VO
VO
VO