Overview
| Comment: | Included unistd.h for W_OK, X_OK, etc |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d61a265cd6332dd3c009eca397643e9a |
| User & Date: | rkeene on 2019-09-17 14:34:41.754 |
| Other Links: | manifest | tags |
Context
|
2019-09-17
| ||
| 14:39 | A bit of cleanup check-in: a4f7828c1d user: rkeene tags: trunk | |
| 14:34 | Included unistd.h for W_OK, X_OK, etc check-in: d61a265cd6 user: rkeene tags: trunk | |
| 14:34 | Ignore coverage files check-in: 61f76061a1 user: rkeene tags: trunk | |
Changes
Modified xvfs-core.c
from [1493b408fe]
to [b817488d55].
1 2 3 4 5 6 7 8 9 10 | #include <xvfs-core.h> #include <string.h> #include <sys/stat.h> #include <errno.h> #include <fcntl.h> #include <tcl.h> #ifdef XVFS_DEBUG #include <stdio.h> /* Needed for XVFS_DEBUG_PRINTF */ static int xvfs_debug_depth = 0; | > | 1 2 3 4 5 6 7 8 9 10 11 | #include <xvfs-core.h> #include <string.h> #include <sys/stat.h> #include <unistd.h> #include <errno.h> #include <fcntl.h> #include <tcl.h> #ifdef XVFS_DEBUG #include <stdio.h> /* Needed for XVFS_DEBUG_PRINTF */ static int xvfs_debug_depth = 0; |
| ︙ | ︙ |