DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Programming with Remote Procedure Calls (RPC)

Constants

RPC/XDR symbolic constants may be used wherever an integer constant is used, for example, in array size specifications.

   const-definition:
   	const const-ident = integer
For example, the following defines a constant, DOZEN, equal to 12.
   const DOZEN = 12;
This is converted to:
   #define DOZEN 12

© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 27 April 2004