From cd5d45a618d6014e32fbed50e4f33963eed9beeb Mon Sep 17 00:00:00 2001 From: tholo <> Date: Sun, 24 Mar 1996 17:07:33 +0000 Subject: [PATCH] Prefix "long long" with "/* LONGLONG */" to shut up lint(1) --- src/include/db.h | 2 ++ src/include/stdio.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/include/db.h b/src/include/db.h index 21d43aaf..4b56f465 100644 --- a/src/include/db.h +++ b/src/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/src/include/stdio.h b/src/include/stdio.h index a224949b..63a10671 100644 --- a/src/include/stdio.h +++ b/src/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