drivers/cc3000: Use cc3000_time_t instead of time_t for custom typedef.
Otherwise it can clash with time_t from the C standard include headers.
This commit is contained in:
parent
17b512020b
commit
c1c798fbc3
@ -165,7 +165,7 @@ extern int CC3000_EXPORT(errno);
|
|||||||
//*****************************************************************************
|
//*****************************************************************************
|
||||||
// Compound Types
|
// Compound Types
|
||||||
//*****************************************************************************
|
//*****************************************************************************
|
||||||
typedef INT32 time_t;
|
typedef INT32 cc3000_time_t;
|
||||||
typedef UINT32 clock_t;
|
typedef UINT32 clock_t;
|
||||||
typedef INT32 suseconds_t;
|
typedef INT32 suseconds_t;
|
||||||
|
|
||||||
@ -173,7 +173,7 @@ typedef struct cc3000_timeval cc3000_timeval;
|
|||||||
|
|
||||||
struct cc3000_timeval
|
struct cc3000_timeval
|
||||||
{
|
{
|
||||||
time_t tv_sec; /* seconds */
|
cc3000_time_t tv_sec; /* seconds */
|
||||||
suseconds_t tv_usec; /* microseconds */
|
suseconds_t tv_usec; /* microseconds */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user