This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Migrating from CCS v 4 to CCS v 5 Produces Annoying Syntax Warnings in Code?

Other Parts Discussed in Thread: MSP430G2553

I am using the MSP430G2553 with
#include <msp430.h>

#include <stdarg.h> //

My application code works in CCS v 5 but gives annoying syntax warnings?

Note: No syntax warnings in CCS v 4 ?

Syntax error lines --->     printf_puts(va_arg(a, char*));
                                            printf_putc(va_arg(a, char));
                                            i = va_arg(a, int);
                                            n = va_arg(a, long);
                                            i = va_arg(a, int);


I believe the "common" include stdarg.h has changed between versions?

Any ideas?