I have following code:
.Lib file:
contain TRNG_GetRandomData( int *Data, int Size ); Method
.H file (header file):
extern void TRNG_GetRandomData( int *Data, int Size );
.C code (Source file):
#include<OpenDrivers.h>
void main()
{
int test[8] ;
TRNG_GetRandomData(test,8);
}
and i getting error
undefined reference to
TRNG_GetRandomData
Can any one help me solve it?