File: mywait.h

package info (click to toggle)
maildrop 0.54a-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 872 kB
  • ctags: 883
  • sloc: cpp: 8,469; ansic: 658; sh: 327; makefile: 82
file content (27 lines) | stat: -rw-r--r-- 1,110 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* DSTART                                                                    */
/*                                                                           */
/*           maildrop - mail delivery agent with filtering abilities         */
/*                                                                           */
/*  Copyright 1998, Double Precision Inc.                                    */
/*                                                                           */
/*  This program is distributed under the terms of the GNU General Public    */
/*  License. See COPYING for additional information.                         */
/* DEND                                                                      */
#ifndef	mywait_h
#define	mywait_h

static const char mywait_h_rcsid[]="$Id: mywait.h 1.1 1998/04/17 00:08:53 mrsam Exp $";

#include	"autoconf.h"
#include	<sys/types.h>
#if HAVE_SYS_WAIT_H
#include	<sys/wait.h>
#endif
#ifndef WEXITSTATUS
#define	WEXITSTATUS(stat_val)	((unsigned)(stat_val) >> 8)
#endif
#ifndef	WIFEXITED
#define	WIFEXITED(stat_val)	(((stat_val) & 255) == 0)
#endif

#endif