fd_close
fd_close — closes a file identified by a file descriptor.
fd_close (fd)
fdA file descriptor as returned from fd_open.
This function closes a file identifed by a file descriptor, ie. that was
opened by fd_open.
Gamma>require_lisp("const/filesys");"const/filesys"Gamma>fp = fd_open("/fd/ttyp8",O_WRONLY);4Gamma>fd_write(fp,"\nHello\n");8Gamma>fd_close(fp);tGamma>fd_close(fp);nil