From bb72f8afabd42f34d7663314627c1556673be402 Mon Sep 17 00:00:00 2001 From: deepend Date: Wed, 25 Feb 2026 01:50:00 -0700 Subject: [PATCH] =?UTF-8?q?Removed=20redundant=20inline=20comments=20from?= =?UTF-8?q?=20the=20common=20header=20includes/platform=20guards=20in=20sr?= =?UTF-8?q?c/common/zoitechat.h=20(e.g.,=20comments=20like=20=E2=80=9Cneed?= =?UTF-8?q?=20time=5Ft=E2=80=9D,=20=E2=80=9Cfor=20win32=E2=80=9D,=20?= =?UTF-8?q?=E2=80=9Cfor=20unix=E2=80=9D),=20while=20preserving=20meaningfu?= =?UTF-8?q?l=20explanatory=20comments.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/zoitechat.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/zoitechat.h b/src/common/zoitechat.h index 64e08bde..4c0f11fe 100644 --- a/src/common/zoitechat.h +++ b/src/common/zoitechat.h @@ -24,7 +24,7 @@ #include #include -#include /* need time_t */ +#include #ifndef ZOITECHAT_H #define ZOITECHAT_H @@ -44,11 +44,11 @@ gboolean zoitechat_apply_theme (const char *theme_name, GError **error); #include "tree.h" #ifdef USE_OPENSSL -#include /* SSL_() */ +#include #include "scram.h" #endif -#ifdef __EMX__ /* for o/s 2 */ +#ifdef __EMX__ #define OFLAGS O_BINARY #define g_ascii_strcasecmp stricmp #define g_ascii_strncasecmp strnicmp @@ -59,7 +59,7 @@ gboolean zoitechat_apply_theme (const char *theme_name, GError **error); /* force a 32bit CMP.L */ #define WORDL(c0, c1, c2, c3) (guint32)(c0 | (c1 << 8) | (c2 << 16) | (c3 << 24)) -#ifdef WIN32 /* for win32 */ +#ifdef WIN32 #define OFLAGS O_BINARY #define sleep(t) Sleep(t*1000) #include @@ -71,7 +71,7 @@ gboolean zoitechat_apply_theme (const char *theme_name, GError **error); #define S_ISDIR(m) ((m) & _S_IFDIR) #endif #define NETWORK_PRIVATE -#else /* for unix */ +#else #define OFLAGS 0 #endif