Notice how I copy the string...
while ( *dst++ = *src++);
It works, but it produces a warning... in this case a false warning, so I turned it off.
Look in the help file...
Contents -> Command Line Tools -> POCC compiler -> Compiler Pragmas
for a full listing of all pragmas the compiler understands.
The help file is your friend!