Go to the first, previous, next, last section, table of contents.


__dup_fd_properties

Syntax

#include <libc/fd_props.h>

void __dup_fd_properties(int existing_handle, int new_handle);

Description

Causes the new file descriptor new_handle to refer to the same fd_properties struct as existing_handle. This internal function is called by dup and dup2.

For more information, see section __set_fd_properties and section __clear_fd_properties.

Return Value

None.

Portability

not ANSI, not POSIX


Go to the first, previous, next, last section, table of contents.