16 lines
184 B
C
16 lines
184 B
C
|
|
/*************
|
||
|
|
* Header file for dup2.c
|
||
|
|
* 1999 E. Rouat
|
||
|
|
************/
|
||
|
|
|
||
|
|
#ifndef DUP2_H_INCLUDED
|
||
|
|
#define DUP2_H_INCLUDED
|
||
|
|
|
||
|
|
#ifndef HAVE_DUP2
|
||
|
|
|
||
|
|
dup2(int oldd, int newd);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|