793e3d7571
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5305 42af7a65-404d-4744-a932-0658087f49c3
20 lines
317 B
C
20 lines
317 B
C
#include <rgmp/assert.h>
|
|
#include <rgmp/stdio.h>
|
|
|
|
int stderr = 2;
|
|
|
|
void __stack_chk_fail_local(void)
|
|
{
|
|
panic("stack check fail\n");
|
|
}
|
|
|
|
int __sprintf_chk(char *str, int flag, size_t strlen, const char *format)
|
|
{
|
|
return snprintf(str, strlen, format);
|
|
}
|
|
|
|
int dl_iterate_phdr(void* arg1, void* arg2)
|
|
{
|
|
return -1;
|
|
}
|