Skip to content

Commit 14ab13f

Browse files
committed
c ffi document fixes for c_short.md and c_longlong.md
1 parent 1d23da6 commit 14ab13f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

library/core/src/ffi/c_longlong.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Equivalent to C's `signed long long` (`long long`) type.
22

33
This type will almost always be [`i64`], but may differ on some systems. The C standard technically only requires that this type be a signed integer that is at least 64 bits and at least the size of a [`long`], although in practice, no system would have a `long long` that is not an `i64`, as most systems do not have a standardised [`i128`] type.
44

5-
[`long`]: c_int
5+
[`long`]: c_long

library/core/src/ffi/c_short.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
Equivalent to C's `signed short` (`short`) type.
22

33
This type will almost always be [`i16`], but may differ on some esoteric systems. The C standard technically only requires that this type be a signed integer with at least 16 bits; some systems may define it as `i32`, for example.
4-
5-
[`char`]: c_char

0 commit comments

Comments
 (0)