diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 17:07:34 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 17:07:34 +0000 |
commit | 6d636619d1bb24932306f0a341fa7ae66050828f (patch) | |
tree | c3ad55f180c9db56ec24aaee66d2de453942aa36 | |
parent | 1deb8d87c13e70f13406ed52f5c9814b1e83646f (diff) |
Prefix "long long" with "/* LONGLONG */" to shut up lint(1)
-rw-r--r-- | include/db.h | 2 | ||||
-rw-r--r-- | include/stdio.h | 1 |
2 files changed, 3 insertions, 0 deletions
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 |