/* hello_s.c server code for the example application */ #include #include #include #include "hello.h" result *helloworld_1(CLIENT *clnt) { static result r; r.hw = (char *) malloc(32); strcpy(r.hw,"hello world!");; return ((result *) &r); }