home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume25 / fsp / part01 / flscmd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-12  |  880 b   |  34 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 "client_def.h"
  11.  
  12. main(argc,argv,envp)
  13.     int argc;
  14.     char **argv,**envp;
  15. {
  16.     unsigned long pos;
  17.     RDIRENT **dp;
  18.  
  19.     env_client();
  20.  
  21.     fls_main(argc,argv,envp);
  22.  
  23.     client_done();
  24.  
  25.     exit(0);
  26. }
  27.  
  28. ls_bad(n)
  29.     int n;
  30. {
  31.     client_done();
  32.     exit(n);
  33. }
  34.