File: wait.h

package info (click to toggle)
openiked 7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,896 kB
  • sloc: ansic: 34,441; yacc: 2,816; perl: 690; makefile: 635; sh: 135
file content (17 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Public domain
 * sys/wait.h compatibility shim
 */

#ifndef _MSC_VER
#include_next <sys/wait.h>
#else

#ifndef IKED_COMPAT_SYS_WAIT_H
#define IKED_COMPAT_SYS_WAIT_H

/* FIXME */

#endif /* !IKED_COMPAT_SYS_WAIT_H */

#endif