File: wait.h

package info (click to toggle)
openbgpd 7.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,868 kB
  • sloc: ansic: 45,814; sh: 11,429; yacc: 4,528; makefile: 300
file content (15 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain
 * sys/wait.h compatibility shim
 */

#include_next <sys/wait.h>

#ifndef LIBCOMPAT_SYS_WAIT_H
#define LIBCOMPAT_SYS_WAIT_H

#ifndef WAIT_ANY
#define WAIT_ANY (-1)
#endif

#endif