Home | History | Annotate | Line # | Download | only in subproc
      1  1.1  christos /* Definitions for Windows
      2  1.1  christos Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
      3  1.1  christos 2006 Free Software Foundation, Inc.
      4  1.1  christos This file is part of GNU Make.
      5  1.1  christos 
      6  1.1  christos GNU Make is free software; you can redistribute it and/or modify it under the
      7  1.1  christos terms of the GNU General Public License as published by the Free Software
      8  1.1  christos Foundation; either version 2, or (at your option) any later version.
      9  1.1  christos 
     10  1.1  christos GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     11  1.1  christos WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     12  1.1  christos A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     13  1.1  christos 
     14  1.1  christos You should have received a copy of the GNU General Public License along with
     15  1.1  christos GNU Make; see the file COPYING.  If not, write to the Free Software
     16  1.1  christos Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.  */
     17  1.1  christos 
     18  1.1  christos #ifndef  _PROC_H
     19  1.1  christos #define _PROC_H
     20  1.1  christos 
     21  1.1  christos typedef int bool_t;
     22  1.1  christos 
     23  1.1  christos #define E_SCALL		101
     24  1.1  christos #define E_IO		102
     25  1.1  christos #define E_NO_MEM	103
     26  1.1  christos #define E_FORK		104
     27  1.1  christos 
     28  1.1  christos extern bool_t arr2envblk(char **arr, char **envblk_out);
     29  1.1  christos 
     30  1.1  christos #endif
     31