From: tholo Date: Sun, 24 Mar 1996 17:07:32 +0000 (+0000) Subject: Prefix "long long" with "/* LONGLONG */" to shut up lint(1) X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=18bd1ea48466f0c2c5f6d4c0f8e8ae4dc7021187;p=openbsd Prefix "long long" with "/* LONGLONG */" to shut up lint(1) --- diff --git a/include/db.h b/include/db.h index 21d43aaf04c..4b56f465cc8 100644 --- a/include/db.h +++ b/include/db.h @@ -56,7 +56,9 @@ typedef unsigned short u_int16_t; typedef int int32_t; typedef unsigned int u_int32_t; #ifdef WE_DONT_NEED_QUADS +/* LONGLONG */ typedef long long int64_t; +/* LONGLONG */ typedef unsigned long long u_int64_t; #endif #endif diff --git a/include/stdio.h b/include/stdio.h index a224949b38f..63a1067196e 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -66,6 +66,7 @@ typedef _BSD_SIZE_T_ size_t; typedef off_t fpos_t; #else typedef struct __sfpos { + /* LONGLONG */ long long _pos; /* XXX must be the same as off_t */ } fpos_t; #endif