diff options
author | Michael Biebl <biebl@debian.org> | 2014-05-16 14:51:51 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2014-05-16 14:51:51 +0200 |
commit | f1040389ccb2430b9ab2ba3209aa28a62565b721 (patch) | |
tree | c6bf609292b6f3a80754c2d01cc8855a36ac7a37 /runtime/typedefs.h | |
parent | 9374a46543e9c43c009f80def8c3b2506b0b377e (diff) | |
download | rsyslog-f1040389ccb2430b9ab2ba3209aa28a62565b721.tar.gz |
Imported Upstream version 8.2.1upstream/8.2.1
Diffstat (limited to 'runtime/typedefs.h')
-rw-r--r-- | runtime/typedefs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/typedefs.h b/runtime/typedefs.h index 8d206f6..d604538 100644 --- a/runtime/typedefs.h +++ b/runtime/typedefs.h @@ -3,7 +3,7 @@ * * Begun 2010-11-25 RGerhards * - * Copyright (C) 2005-2013 by Rainer Gerhards and Adiscon GmbH + * Copyright (C) 2005-2014 by Rainer Gerhards and Adiscon GmbH * * This file is part of the rsyslog runtime library. * @@ -158,7 +158,9 @@ typedef enum { } fiop_t; #ifndef HAVE_LSEEK64 - typedef off_t off64_t; +# ifndef HAVE_OFF64_T + typedef off_t off64_t; +# endif #endif |