APUE Learning Example Source Code
guowenxue
2023-11-06 7856bf3569cc448fe3b360c3fca836593a0c0c7d
ch1_fileIO/file_io.c
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
@@ -39,6 +40,6 @@
cleanup:
    close(fd);
    return 0;
}