diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-04 01:37:43 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-03-04 01:37:43 +0100 |
commit | b38744980d3c5520bafa7ab77668b62b55b50039 (patch) | |
tree | fa339fa5196fa55e3f5204d17d9a910924d633a6 | |
parent | b1c8dd9d231dac88338c6c9f2c2c0b51afee8cba (diff) | |
download | hurd-b38744980d3c5520bafa7ab77668b62b55b50039.tar.gz hurd-b38744980d3c5520bafa7ab77668b62b55b50039.tar.bz2 hurd-b38744980d3c5520bafa7ab77668b62b55b50039.zip |
Avoid using loff_t
It may not be available depending on standard selection.
* hurd/hurd_types.h (off_array_t, const_off_array_t): Use __loff_t
instead of loff_t.
-rw-r--r-- | hurd/hurd_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hurd/hurd_types.h b/hurd/hurd_types.h index c072ad21..4d68b36b 100644 --- a/hurd/hurd_types.h +++ b/hurd/hurd_types.h @@ -69,8 +69,8 @@ typedef pid_t *pidarray_t; typedef const pid_t *const_pidarray_t; typedef uid_t *idarray_t; typedef const uid_t *const_idarray_t; -typedef loff_t *off_array_t; -typedef const loff_t *const_off_array_t; +typedef __loff_t *off_array_t; +typedef const __loff_t *const_off_array_t; typedef struct rusage rusage_t; typedef struct flock flock_t; typedef struct utsname utsname_t; |