summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/wait.inl
blob: a0c8ebe118134a50c766e9f47ab1354905da47b6 (plain)
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
28
29
30
/* $Id$ -*- C -*-

 * =============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/win32/wait.inl
 *
 * = AUTHOR
 *    Luther Baker
 *
 * ============================================================================= */

#include <sys/wait.h>

PACE_INLINE
pid_t
pace_wait (int * statloc)
{
  return wait (statloc);
}

PACE_INLINE
pid_t
pace_waitpid (pid_t pid, int * statloc, int options)
{
  return waitpid (pid, statloc, options);
}