about summary refs log tree commit diff
path: root/library/std/src/os/raw/longlong.md
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/os/raw/longlong.md')
-rw-r--r--library/std/src/os/raw/longlong.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/library/std/src/os/raw/longlong.md b/library/std/src/os/raw/longlong.md
deleted file mode 100644
index 49c61bd61f4..00000000000
--- a/library/std/src/os/raw/longlong.md
+++ /dev/null
@@ -1,5 +0,0 @@
-Equivalent to C's `signed long long` (`long long`) type.
-
-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.
-
-[`long`]: c_int