8 lines
101 B
C
8 lines
101 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int app_entry(void *param)
|
||
|
{
|
||
|
printf("enter %s\n", __func__);
|
||
|
return 0;
|
||
|
}
|