Former-commit-id:06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f] Former-commit-id:9f19e3f712
20 lines
537 B
C
20 lines
537 B
C
/*
|
|
* Copyright 1993, University Corporation for Atmospheric Research
|
|
* See ../COPYRIGHT file for copying and redistribution conditions.
|
|
*/
|
|
/* $Id: fdnb.h,v 1.2 1995/10/19 00:34:28 davis Exp $ */
|
|
#ifndef _FDNB_H_
|
|
#define _FDNB_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" int set_fd_nonblock( int fd );
|
|
extern "C" int clr_fd_nonblock( int fd );
|
|
#elif defined(__STDC__)
|
|
extern int set_fd_nonblock( int fd );
|
|
extern int clr_fd_nonblock( int fd );
|
|
#else
|
|
extern int set_fd_nonblock();
|
|
extern int clr_fd_nonblock();
|
|
#endif
|
|
|
|
#endif /* !_FDNB_H_ */
|