#include #include "firsttry.h" /* CpSc 824 Hello world RPC server -- it just returns the string. */ char **firsttry_1() { static char msg[256]; static char *p; printf("getting ready to return value\n"); strcpy(msg, "Hello world"); p = msg; printf("Returning\n"); return(&p); }