home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / fsp / part01 / fver.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-12  |  830 b   |  24 lines

  1.     /*********************************************************************\
  2.     *  Copyright (c) 1991 by Wen-King Su (wen-king@vlsi.cs.caltech.edu)   *
  3.     *                                                                     *
  4.     *  You may copy or modify this file in any manner you wish, provided  *
  5.     *  that this notice is always included, and that you hold the author  *
  6.     *  harmless for any loss or damage resulting from the installation or *
  7.     *  use of this software.                                              *
  8.     \*********************************************************************/
  9.  
  10. #include <stdio.h>
  11. #include "client_def.h"
  12.  
  13. main()
  14. {
  15.     UBUF *ub;
  16.  
  17.     env_client();
  18.     ub = client_interact(CC_VERSION,0L, 0,NULLP, 0,NULLP);
  19.     printf("FSP version: %s\n",ub->buf);
  20.     client_done();
  21.  
  22.     exit(0);
  23. }
  24.