summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/apr_file_info.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 42f123b28..073fdc94a 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -132,11 +132,14 @@ typedef apr_int32_t apr_fileperms_t;
typedef apr_uint64_t apr_ino_t;
/**
* Structure for determining the device the file is on.
- * @defvar apr_dev_t
*/
typedef apr_uint32_t apr_dev_t;
#else
+/** The inode of the file. */
typedef ino_t apr_ino_t;
+/**
+ * Structure for determining the device the file is on.
+ */
typedef dev_t apr_dev_t;
#endif