Hello Anthony,

I greatly appreciate that you are looking into this. I'm currently working on building wolfssl package with my NXP BSP package. I'm using CodeWarrior as the IDE.

Please refer to the error log attached to this post.

Thanks,
Sayeed

I'm trying to compile on my windows machine but I'm not able to find out what is happening here:

#ifndef NO_ASN_TIME
/* Time */
/* Returns seconds (Epoch/UTC)
* timePtr: is "time_t", which is typically "long"
* Example:
    long lTime;
    rc = wc_GetTime(&lTime, (word32)sizeof(lTime));
*/
WOLFSSL_API int wc_GetTime(void* timePtr, word32 timeSize);

typedef time_t (*wc_time_cb)(time_t* t);
WOLFSSL_API int wc_SetTimeCb(wc_time_cb f);
WOLFSSL_API time_t wc_Time(time_t* t);
#endif