diff --git a/trunk/tinySAK/src/tsk_string.c b/trunk/tinySAK/src/tsk_string.c index 3becf441..846a047b 100644 --- a/trunk/tinySAK/src/tsk_string.c +++ b/trunk/tinySAK/src/tsk_string.c @@ -460,7 +460,7 @@ int64_t tsk_atoll(const char* str) if(str){ #if defined(_MSC_VER) return _atoi64(str); -#elif defined(__GUNC__) +#elif defined(__GNUC__) return atoll(str); #else return atol(str); diff --git a/trunk/tinySIP/ragel/tsip_parser_header_Date.rl b/trunk/tinySIP/ragel/tsip_parser_header_Date.rl index ffdb7984..ba15ef70 100644 --- a/trunk/tinySIP/ragel/tsip_parser_header_Date.rl +++ b/trunk/tinySIP/ragel/tsip_parser_header_Date.rl @@ -169,7 +169,7 @@ static tsk_object_t* tsip_header_Date_ctor(tsk_object_t *self, va_list * app) Date->wkday = tsk_strdup(wkday); Date->month = tsk_strdup(month); -#if defined __GUNC__ +#if defined __GNUC__ Date->day = (int8_t)va_arg(*app, int); Date->year = (int16_t)va_arg(*app, int); Date->time.h = (int8_t)va_arg(*app, int); diff --git a/trunk/tinySIP/src/headers/tsip_header_Date.c b/trunk/tinySIP/src/headers/tsip_header_Date.c index 1bdc9291..769f8274 100644 --- a/trunk/tinySIP/src/headers/tsip_header_Date.c +++ b/trunk/tinySIP/src/headers/tsip_header_Date.c @@ -414,7 +414,7 @@ static tsk_object_t* tsip_header_Date_ctor(tsk_object_t *self, va_list * app) Date->wkday = tsk_strdup(wkday); Date->month = tsk_strdup(month); -#if defined __GUNC__ +#if defined __GNUC__ Date->day = (int8_t)va_arg(*app, int); Date->year = (int16_t)va_arg(*app, int); Date->time.h = (int8_t)va_arg(*app, int);