28 lines
386 B
C
Executable File
28 lines
386 B
C
Executable File
/*
|
|
* Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#ifndef _RPC_RAW_H
|
|
#define _RPC_RAW_H
|
|
|
|
#pragma ident "@(#)raw.h 1.9 93/02/04 SMI"
|
|
/* @(#)raw.h 1.2 88/10/25 SMI */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* raw.h
|
|
*
|
|
* Raw interface
|
|
* The common memory area over which they will communicate
|
|
*/
|
|
char *_rawcombuf;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _RPC_RAW_H */
|