This website works better with JavaScript.
Home
Explore
Register
Sign In
Fincer
/
openntpd-openbsd
mirror of
https://github.com/Fincer/openntpd-openbsd
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
61
Wiki
Activity
Browse Source
Prefix "long long" with "/* LONGLONG */" to shut up lint(1)
OPENBSD_2_0
tholo
29 years ago
parent
346f9adabb
commit
cd5d45a618
2 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
src/include/db.h
+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
Write
Preview
Loading…
Cancel
Save