strange behavior on my prog !

Well thanks for helps...

i've try this code... from your link

#include <avr/pgmspace.h>

PGM_P array[2] PROGMEM = {
    "Foo",
    "Bar"
};

void loop ()
{
    char buf[32];
    strcpy_P (buf, array[1]);
    return 0;
}

and have received this error ;
"unexpected token:array" :-/

don't know !

i've tried the second exemple, same result :
"unexpected token:const"

do i need to add pgmspace.h somewhere ?

regards

eric