artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05dffa0
)
Prefix "long long" with "/* LONGLONG */" to shut up lint(1)
author
tholo
<tholo@openbsd.org>
Sun, 24 Mar 1996 17:07:32 +0000
(17:07 +0000)
committer
tholo
<tholo@openbsd.org>
Sun, 24 Mar 1996 17:07:32 +0000
(17:07 +0000)
include/db.h
patch
|
blob
|
history
include/stdio.h
patch
|
blob
|
history
diff --git
a/include/db.h
b/include/db.h
index
21d43aa
..
4b56f46
100644
(file)
--- 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
a224949
..
63a1067
100644
(file)
--- 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