Browse Source

Prefix "long long" with "/* LONGLONG */" to shut up lint(1)

OPENBSD_2_0
tholo 28 years ago
parent
commit
cd5d45a618
2 changed files with 3 additions and 0 deletions
  1. +2
    -0
      src/include/db.h
  2. +1
    -0
      src/include/stdio.h

+ 2
- 0
src/include/db.h View File

@ -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


+ 1
- 0
src/include/stdio.h View File

@ -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


Loading…
Cancel
Save