diff options
| author | Paul Eggert | 2024-05-11 13:16:48 -0700 |
|---|---|---|
| committer | Paul Eggert | 2024-05-11 18:46:26 -0700 |
| commit | 7ae091d933b03d0a1e1e0b39a949c2811c4c3618 (patch) | |
| tree | 6c4f1fbbbc86621d3e4320a9bcceab901c1b6d68 /lib/fsusage.h | |
| parent | 2e13c2adbad4fc609f560926f6e536b25281f925 (diff) | |
| download | emacs-7ae091d933b03d0a1e1e0b39a949c2811c4c3618.tar.gz emacs-7ae091d933b03d0a1e1e0b39a949c2811c4c3618.zip | |
Update from Gnulib by running admin/merge-gnulib
Diffstat (limited to 'lib/fsusage.h')
| -rw-r--r-- | lib/fsusage.h | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/fsusage.h b/lib/fsusage.h index d7ae5f63a36..da87859060c 100644 --- a/lib/fsusage.h +++ b/lib/fsusage.h | |||
| @@ -19,9 +19,14 @@ | |||
| 19 | /* Space usage statistics for a file system. Blocks are 512-byte. */ | 19 | /* Space usage statistics for a file system. Blocks are 512-byte. */ |
| 20 | 20 | ||
| 21 | #if !defined FSUSAGE_H_ | 21 | #if !defined FSUSAGE_H_ |
| 22 | # define FSUSAGE_H_ | 22 | #define FSUSAGE_H_ |
| 23 | |||
| 24 | #include <stdint.h> | ||
| 25 | |||
| 26 | #ifdef __cplusplus | ||
| 27 | extern "C" { | ||
| 28 | #endif | ||
| 23 | 29 | ||
| 24 | # include <stdint.h> | ||
| 25 | 30 | ||
| 26 | struct fs_usage | 31 | struct fs_usage |
| 27 | { | 32 | { |
| @@ -36,4 +41,9 @@ struct fs_usage | |||
| 36 | 41 | ||
| 37 | int get_fs_usage (char const *file, char const *disk, struct fs_usage *fsp); | 42 | int get_fs_usage (char const *file, char const *disk, struct fs_usage *fsp); |
| 38 | 43 | ||
| 44 | |||
| 45 | #ifdef __cplusplus | ||
| 46 | } | ||
| 47 | #endif | ||
| 48 | |||
| 39 | #endif | 49 | #endif |