#include <paths.h>
#include <stdio.h>
#include <rpc/rpc.h>
#include "msg.h"
int *
printmessage_1(msg)
char **msg;
{
static int result;
FILE *f;
f = fopen(_PATH_CONSOLE, "w");
if (f == NULL) {
result = 0;
return (&result);
}
fprintf(f, "%s\n", *msg);
fclose(f);
result = 1;
return (&result);
}