aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/fcntl.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2020-03-11 13:28:27 +0100
committerCorinna Vinschen <corinna@vinschen.de>2020-03-11 13:45:58 +0100
commit3bb346d5937079c3dcbc75d113f81d1f80ee28ef (patch)
tree0ad4616c15086180632d816edd463ceb2fc47b6c /winsup/cygwin/fcntl.cc
parentd2ef2331f9ec4cc6510cab5cd540bb3c3c863ca8 (diff)
downloadnewlib-3bb346d5937079c3dcbc75d113f81d1f80ee28ef.zip
newlib-3bb346d5937079c3dcbc75d113f81d1f80ee28ef.tar.gz
newlib-3bb346d5937079c3dcbc75d113f81d1f80ee28ef.tar.bz2
Cygwin: fix formatting: collapse whitespace-only lines
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/fcntl.cc')
-rw-r--r--winsup/cygwin/fcntl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fcntl.cc b/winsup/cygwin/fcntl.cc
index 04eeaeb..9ef7e52 100644
--- a/winsup/cygwin/fcntl.cc
+++ b/winsup/cygwin/fcntl.cc
@@ -43,7 +43,7 @@ fcntl64 (int fd, int cmd, ...)
case which is covered here by always reading the arg with
sizeof (intptr_t) == sizeof (long) == sizeof (void*) which matches
all targets.
-
+
However, the POSIX standard defines all numerical args as type int.
If we take that literally, we had a (small) problem on 64 bit, since
sizeof (void*) != sizeof (int). If we would like to follow POSIX more