home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / RPCSMP.ZIP / RGUS.C < prev    next >
Text File  |  1992-12-10  |  2KB  |  35 lines

  1. /********************************************************copyrite.xic***/
  2. /*                                                                     */
  3. /*   Licensed Materials - Property of IBM                              */
  4. /*                                                                     */
  5. /*   This product contains "Restricted Materials of IBM":              */
  6. /*      Program Number:   5798RXW                                      */
  7. /*      Program Name:     IBM TCP/IP Version 1.2 for OS/2              */
  8. /*   (C) Copyright IBM Corporation. 1990, 1991.                        */
  9. /*                                                                     */
  10. /*   All rights reserved.                                              */
  11. /*                                                                     */
  12. /*   US Government Users Restricted Rights -                           */
  13. /*   Use, duplication or disclosure restricted by GSA ADP Schedule     */
  14. /*   Contract with IBM Corp.                                           */
  15. /*                                                                     */
  16. /*   See IBM Copyright Instructions.                                   */
  17. /*                                                                     */
  18. /********************************************************copyrite.xic***/
  19. /* RGUS.C */
  20.  
  21. /* user written */
  22. /* server program */
  23.  
  24. #include <stdio.h>
  25. #include <rpc/rpc.h>
  26. #include "rg.h"
  27.  
  28. int * printmessage_2(char **msg)
  29. {
  30.    static int result;
  31.    printf("%s\n",*msg);
  32.    result = 1;
  33.    return(&result);
  34. }
  35.