rpc_hout.c (d3cb5ded92a4fcf21400c9742ca884549bebc99e) rpc_hout.c (40ad88851bea3bb7fce12e7d23e5a0c1159e9080)
1/* $FreeBSD$ */
2/*
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.

--- 17 unchanged lines hidden (view full) ---

26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
29 */
30
31#ident "@(#)rpc_hout.c 1.16 94/04/25 SMI"
32
33#ifndef lint
1/* $FreeBSD$ */
2/*
3 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
4 * unrestricted use provided that this legend is included on all tape
5 * media and as a part of the software program in whole or part. Users
6 * may copy or modify Sun RPC without charge, but are not authorized
7 * to license or distribute it to anyone else except as part of a product or
8 * program developed by the user.

--- 17 unchanged lines hidden (view full) ---

26 * Sun Microsystems, Inc.
27 * 2550 Garcia Avenue
28 * Mountain View, California 94043
29 */
30
31#ident "@(#)rpc_hout.c 1.16 94/04/25 SMI"
32
33#ifndef lint
34#if 0
34static char sccsid[] = "@(#)rpc_hout.c 1.12 89/02/22 (C) 1987 SMI";
35#endif
35static char sccsid[] = "@(#)rpc_hout.c 1.12 89/02/22 (C) 1987 SMI";
36#endif
37#endif
36
37/*
38 * rpc_hout.c, Header file outputter for the RPC protocol compiler
39 * Copyright (C) 1987, Sun Microsystems, Inc.
40 */
41#include <stdio.h>
42#include <ctype.h>
43#include "rpc_parse.h"

--- 64 unchanged lines hidden (view full) ---

108 definition *def;
109{
110 switch (def->def_kind) {
111 case DEF_PROGRAM:
112 f_print(fout, "\n");
113 pprogramdef(def);
114 break;
115 default:
38
39/*
40 * rpc_hout.c, Header file outputter for the RPC protocol compiler
41 * Copyright (C) 1987, Sun Microsystems, Inc.
42 */
43#include <stdio.h>
44#include <ctype.h>
45#include "rpc_parse.h"

--- 64 unchanged lines hidden (view full) ---

110 definition *def;
111{
112 switch (def->def_kind) {
113 case DEF_PROGRAM:
114 f_print(fout, "\n");
115 pprogramdef(def);
116 break;
117 default:
118 break;
116 }
117}
118
119/* store away enough information to allow the XDR functions to be spat
120 out at the end of the file */
121
122void
123storexdrfuncdecl(name, pointerp)

--- 495 unchanged lines hidden ---
119 }
120}
121
122/* store away enough information to allow the XDR functions to be spat
123 out at the end of the file */
124
125void
126storexdrfuncdecl(name, pointerp)

--- 495 unchanged lines hidden ---