mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
14 lines
188 B
C
14 lines
188 B
C
|
/* Produces a minimal ELF file for espcoredump tests */
|
||
|
|
||
|
typedef struct {
|
||
|
char stuff[TASK_NAME_OFFSET];
|
||
|
char pcTaskName[16];
|
||
|
} TCB_t;
|
||
|
|
||
|
TCB_t foo;
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|