|
Library /sys$common/syshlp/HELPLIB.HLB CRTL, close, Example *Conan The Librarian |
#include <unistd.h>
int fd;
.
.
.
fd = open ("student.dat", 1);
.
.
.
close(fd);
|
|