home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / GNUISH / SWALIB0.ZIP / SW_SPV.C < prev    next >
C/C++ Source or Header  |  1990-09-10  |  1KB  |  41 lines

  1. /* sw_spv.c - spawn a child process.
  2.    Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3.  
  4.    This file is part of SWAPLIB (the library), a library for efficient
  5.    execution of child processes under MS-DOS.
  6.  
  7.    The library is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 1, or (at your option)
  10.    any later version.
  11.  
  12.    The library is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with the library; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    $Header: e:/gnu/swaplib/RCS/sw_spv.c'v 0.9 90/09/09 21:44:17 tho Stable $
  22.  */
  23.  
  24. #include <stdio.h>
  25.  
  26. #include "swaplib.h"
  27.  
  28. int
  29. swap_spawnv (char *cmd, char **argv)
  30. {
  31.   return swap_spawnve (cmd, argv, NULL);
  32. }
  33.  
  34. /* 
  35.  * Local Variables:
  36.  * mode:C
  37.  * ChangeLog:ChangeLog
  38.  * compile-command:make
  39.  * End:
  40.  */
  41.