From b38744980d3c5520bafa7ab77668b62b55b50039 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 4 Mar 2018 01:37:43 +0100 Subject: 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. --- hurd/hurd_types.h | 4 ++-- 1 file 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; -- cgit v1.2.3