blob: 9011b1e3730c37d141aed19e8a19920e55730bfb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdio.h>
#include <reent.h>
int main()
{
_REENT_INIT_PTR(_impure_ptr);
printf("reent struct size: %d bytes\n",sizeof(struct _reent));
printf("reent pointer : 0x%08x\n",_impure_ptr);
printf("reent pointer : 0x%08x\n",_impure_ptr);
}
|