From 4f92f68c3d4c4eb7dca0e3d3009bdc9c2816eaae Mon Sep 17 00:00:00 2001 From: Ilya Nozhkin Date: Mon, 30 Nov 2020 14:37:06 +0300 Subject: [PATCH] Fix formatting in Platform.h --- src/Platform.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Platform.h b/src/Platform.h index 45c995c..d4235df 100644 --- a/src/Platform.h +++ b/src/Platform.h @@ -64,12 +64,12 @@ typedef void (*sighandler_t)(int); // CODETAG_IOR_SIGNALS // signal.h -#define SIGQUIT 3 // Terminal quit signal -#define SIGKILL 9 // Kill (cannot be caught or ignored) -#define SIGPIPE 13 // Write on a pipe with no one to read it -#define SIGCONT 18 // Continue executing, if stopped. -#define SIGTSTP 20 // Terminal stop signal -#define SIGSTOP 23 // Stop executing (cannot be caught or ignored) +#define SIGQUIT 3 // Terminal quit signal +#define SIGKILL 9 // Kill (cannot be caught or ignored) +#define SIGPIPE 13 // Write on a pipe with no one to read it +#define SIGCONT 18 // Continue executing, if stopped. +#define SIGTSTP 20 // Terminal stop signal +#define SIGSTOP 23 // Stop executing (cannot be caught or ignored) #define SIGWINCH 28 // (== SIGVTALRM) #else