summaryrefslogtreecommitdiff
path: root/share/examples/sunrpc
diff options
context:
space:
mode:
Diffstat (limited to 'share/examples/sunrpc')
-rw-r--r--share/examples/sunrpc/msg/msg_proc.c4
-rw-r--r--share/examples/sunrpc/msg/printmsg.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/share/examples/sunrpc/msg/msg_proc.c b/share/examples/sunrpc/msg/msg_proc.c
index 96c1cb5ab005..ed088839e52a 100644
--- a/share/examples/sunrpc/msg/msg_proc.c
+++ b/share/examples/sunrpc/msg/msg_proc.c
@@ -1,7 +1,9 @@
/* @(#)msg_proc.c 2.1 88/08/11 4.0 RPCSRC */
+/* $FreeBSD$ */
/*
* msg_proc.c: implementation of the remote procedure "printmessage"
*/
+#include <paths.h>
#include <stdio.h>
#include <rpc/rpc.h> /* always need this here */
#include "msg.h" /* need this too: msg.h will be generated by rpcgen */
@@ -16,7 +18,7 @@ printmessage_1(msg)
static int result; /* must be static! */
FILE *f;
- f = fopen("/dev/console", "w");
+ f = fopen(_PATH_CONSOLE, "w");
if (f == NULL) {
result = 0;
return (&result);
diff --git a/share/examples/sunrpc/msg/printmsg.c b/share/examples/sunrpc/msg/printmsg.c
index f2d5285af39f..681007c4b1fe 100644
--- a/share/examples/sunrpc/msg/printmsg.c
+++ b/share/examples/sunrpc/msg/printmsg.c
@@ -1,7 +1,9 @@
/* @(#)printmsg.c 2.1 88/08/11 4.0 RPCSRC */
+/* $FreeBSD$ */
/*
* printmsg.c: print a message on the console
*/
+#include <paths.h>
#include <stdio.h>
main(argc, argv)
@@ -33,7 +35,7 @@ printmessage(msg)
{
FILE *f;
- f = fopen("/dev/console", "w");
+ f = fopen(_PATH_CONSOLE, "w");
if (f == NULL) {
return (0);
}