aboutsummaryrefslogtreecommitdiff
path: root/gdbsupport/host-defs.h
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:36:23 -0500
committerSimon Marchi <simon.marchi@polymtl.ca>2023-02-08 15:46:02 -0500
commitc583a2520616c2736cffc389c89a48b159366e6c (patch)
treeb4925f26506fcee96c16119431c01760f05db95d /gdbsupport/host-defs.h
parentca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff)
downloadbinutils-users/simark/clang-format.zip
binutils-users/simark/clang-format.tar.gz
binutils-users/simark/clang-format.tar.bz2
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdbsupport/host-defs.h')
-rw-r--r--gdbsupport/host-defs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gdbsupport/host-defs.h b/gdbsupport/host-defs.h
index 8459386..32dbcab 100644
--- a/gdbsupport/host-defs.h
+++ b/gdbsupport/host-defs.h
@@ -25,7 +25,7 @@
/* * Number of bits in a char or unsigned char for the target machine.
Just like CHAR_BIT in <limits.h> but describes the target machine. */
-#if !defined (TARGET_CHAR_BIT)
+#if !defined(TARGET_CHAR_BIT)
#define TARGET_CHAR_BIT 8
#endif
@@ -34,20 +34,20 @@
the number of bits in a host char. If not, use the same size
as the target. */
-#if defined (CHAR_BIT)
+#if defined(CHAR_BIT)
#define HOST_CHAR_BIT CHAR_BIT
#else
#define HOST_CHAR_BIT TARGET_CHAR_BIT
#endif
#ifdef __MSDOS__
-# define CANT_FORK
-# define GLOBAL_CURDIR
-# define DIRNAME_SEPARATOR ';'
+#define CANT_FORK
+#define GLOBAL_CURDIR
+#define DIRNAME_SEPARATOR ';'
#endif
-#if !defined (__CYGWIN__) && defined (_WIN32)
-# define DIRNAME_SEPARATOR ';'
+#if !defined(__CYGWIN__) && defined(_WIN32)
+#define DIRNAME_SEPARATOR ';'
#endif
#ifndef DIRNAME_SEPARATOR