home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 9
/
09.iso
/
l
/
l200
/
6.ddi
/
LIB
/
DACLOSE.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1986-08-21
|
247 b
|
13 lines
/* da_close(fd) will close the file whose descriptor is provided.
Copyright (c) 1983 by James F. Gimpel
Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
*/
#include "acom.h"
VOID da_close(fd)
FILE fd;
{
close(fd);
}