diff options
| author | Warner Losh <imp@FreeBSD.org> | 2023-11-23 17:21:37 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2023-11-27 05:23:29 +0000 |
| commit | 97759ccc715c4b365432c16d763c50eecfcb1100 (patch) | |
| tree | 9dde9d23eac71bb90adedbf50d3e5c64bbca094c /share/examples | |
| parent | 174c0ac687ec4ccb0b56ee30d48c0a7b8b9c4e15 (diff) | |
Diffstat (limited to 'share/examples')
| -rw-r--r-- | share/examples/sunrpc/Makefile | 4 | ||||
| -rw-r--r-- | share/examples/sunrpc/dir/Makefile | 4 | ||||
| -rw-r--r-- | share/examples/sunrpc/dir/dir.x | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/dir/dir_proc.c | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/dir/rls.c | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/msg/Makefile | 4 | ||||
| -rw-r--r-- | share/examples/sunrpc/msg/msg.x | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/msg/msg_proc.c | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/msg/printmsg.c | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/msg/rprintmsg.c | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/sort/Makefile | 4 | ||||
| -rw-r--r-- | share/examples/sunrpc/sort/rsort.c | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/sort/sort.x | 1 | ||||
| -rw-r--r-- | share/examples/sunrpc/sort/sort_proc.c | 1 |
14 files changed, 0 insertions, 26 deletions
diff --git a/share/examples/sunrpc/Makefile b/share/examples/sunrpc/Makefile index 2d7174f1fced..231d2f0262f5 100644 --- a/share/examples/sunrpc/Makefile +++ b/share/examples/sunrpc/Makefile @@ -1,7 +1,3 @@ -# -# @(#)Makefile 2.1 88/08/02 4.0 RPCSRC -# -# # Build all demo services # # diff --git a/share/examples/sunrpc/dir/Makefile b/share/examples/sunrpc/dir/Makefile index 1c6874110d83..5d66e639025d 100644 --- a/share/examples/sunrpc/dir/Makefile +++ b/share/examples/sunrpc/dir/Makefile @@ -1,7 +1,3 @@ -# -# @(#)Makefile 2.1 88/08/02 4.0 RPCSRC -# -# PACKAGE=examples FILESDIR=${SHAREDIR}/examples/sunrpc/dir BIN = dir_svc rls diff --git a/share/examples/sunrpc/dir/dir.x b/share/examples/sunrpc/dir/dir.x index db4283cbfe00..ddd5d0f43c4e 100644 --- a/share/examples/sunrpc/dir/dir.x +++ b/share/examples/sunrpc/dir/dir.x @@ -1,4 +1,3 @@ -/* @(#)dir.x 2.1 88/08/02 4.0 RPCSRC */ /* * dir.x: Remote directory listing protocol */ diff --git a/share/examples/sunrpc/dir/dir_proc.c b/share/examples/sunrpc/dir/dir_proc.c index 46221a2163cd..afeda53d5243 100644 --- a/share/examples/sunrpc/dir/dir_proc.c +++ b/share/examples/sunrpc/dir/dir_proc.c @@ -1,4 +1,3 @@ -/* @(#)dir_proc.c 2.1 88/08/02 4.0 RPCSRC */ /* * dir_proc.c: remote readdir implementation */ diff --git a/share/examples/sunrpc/dir/rls.c b/share/examples/sunrpc/dir/rls.c index aa7f79f91b57..c165bba08e04 100644 --- a/share/examples/sunrpc/dir/rls.c +++ b/share/examples/sunrpc/dir/rls.c @@ -1,4 +1,3 @@ -/* @(#)rls.c 2.2 88/08/12 4.0 RPCSRC */ /* * rls.c: Remote directory listing client */ diff --git a/share/examples/sunrpc/msg/Makefile b/share/examples/sunrpc/msg/Makefile index bf4791113042..4ccb7f62e3db 100644 --- a/share/examples/sunrpc/msg/Makefile +++ b/share/examples/sunrpc/msg/Makefile @@ -1,7 +1,3 @@ -# -# @(#)Makefile 2.1 88/08/11 4.0 RPCSRC -# -# PACKAGE=examples FILESDIR=${SHAREDIR}/examples/sunrpc/msg BIN = printmsg msg_svc rprintmsg diff --git a/share/examples/sunrpc/msg/msg.x b/share/examples/sunrpc/msg/msg.x index d3113520d822..8df021add840 100644 --- a/share/examples/sunrpc/msg/msg.x +++ b/share/examples/sunrpc/msg/msg.x @@ -1,4 +1,3 @@ -/* @(#)msg.x 2.1 88/08/11 4.0 RPCSRC */ /* * msg.x: Remote message printing protocol */ diff --git a/share/examples/sunrpc/msg/msg_proc.c b/share/examples/sunrpc/msg/msg_proc.c index bc7130bf029a..bd0797fc15bc 100644 --- a/share/examples/sunrpc/msg/msg_proc.c +++ b/share/examples/sunrpc/msg/msg_proc.c @@ -1,4 +1,3 @@ -/* @(#)msg_proc.c 2.1 88/08/11 4.0 RPCSRC */ /* * msg_proc.c: implementation of the remote procedure "printmessage" */ diff --git a/share/examples/sunrpc/msg/printmsg.c b/share/examples/sunrpc/msg/printmsg.c index d8b227bde926..6058eb94fb82 100644 --- a/share/examples/sunrpc/msg/printmsg.c +++ b/share/examples/sunrpc/msg/printmsg.c @@ -1,4 +1,3 @@ -/* @(#)printmsg.c 2.1 88/08/11 4.0 RPCSRC */ /* * printmsg.c: print a message on the console */ diff --git a/share/examples/sunrpc/msg/rprintmsg.c b/share/examples/sunrpc/msg/rprintmsg.c index b9301de5e0d5..25f09cb097dc 100644 --- a/share/examples/sunrpc/msg/rprintmsg.c +++ b/share/examples/sunrpc/msg/rprintmsg.c @@ -1,4 +1,3 @@ -/* @(#)rprintmsg.c 2.1 88/08/11 4.0 RPCSRC */ /* * rprintmsg.c: remote version of "printmsg.c" */ diff --git a/share/examples/sunrpc/sort/Makefile b/share/examples/sunrpc/sort/Makefile index 3fb0d92dcacc..9ea4044b0b67 100644 --- a/share/examples/sunrpc/sort/Makefile +++ b/share/examples/sunrpc/sort/Makefile @@ -1,7 +1,3 @@ -# -# @(#)Makefile 2.1 88/08/11 4.0 RPCSRC -# -# PACKAGE=examples FILESDIR=${SHAREDIR}/examples/sunrpc/sort BIN = rsort sort_svc diff --git a/share/examples/sunrpc/sort/rsort.c b/share/examples/sunrpc/sort/rsort.c index 5c05ad7f42cc..1a96d826d096 100644 --- a/share/examples/sunrpc/sort/rsort.c +++ b/share/examples/sunrpc/sort/rsort.c @@ -1,4 +1,3 @@ -/* @(#)rsort.c 2.1 88/08/11 4.0 RPCSRC */ /* * rsort.c * Client side application which sorts argc, argv. diff --git a/share/examples/sunrpc/sort/sort.x b/share/examples/sunrpc/sort/sort.x index 629110cdf33a..9db635fa0eb5 100644 --- a/share/examples/sunrpc/sort/sort.x +++ b/share/examples/sunrpc/sort/sort.x @@ -1,4 +1,3 @@ -/* @(#)sort.x 2.1 88/08/11 4.0 RPCSRC */ /* * The sort procedure receives an array of strings and returns an array * of strings. This toy service handles a maximum of 64 strings. diff --git a/share/examples/sunrpc/sort/sort_proc.c b/share/examples/sunrpc/sort/sort_proc.c index 5538faf7ea03..d09df48ca883 100644 --- a/share/examples/sunrpc/sort/sort_proc.c +++ b/share/examples/sunrpc/sort/sort_proc.c @@ -1,4 +1,3 @@ -/* @(#)sort_proc.c 2.1 88/08/11 4.0 RPCSRC */ #include <rpc/rpc.h> #include "sort.h" |
