Home | History | Annotate | Download | only in target_platform
      1 #include <stdio.h>
      2 
      3 const char *message(void);
      4 
      5 int main(void) {
      6   printf("%s\n", message());
      7   return 0;
      8 }
      9