From bfd92a19b7fb3fff536941a57a5702fda1ad7696 Mon Sep 17 00:00:00 2001 From: 8nlight <8nlight@disroot.org> Date: Wed, 23 Aug 2023 19:45:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?C=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- C/irc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C/irc.h b/C/irc.h index 9041e7e..6f4ed67 100644 --- a/C/irc.h +++ b/C/irc.h @@ -8,8 +8,9 @@ motd parsing */ -#ifdef IRC_LINUX -#define IRC_LINUX +#if defined(_WIN32) || defined(_WIN64) + #error "Only unix" +#endif #include #include @@ -52,4 +53,3 @@ unsigned int IRCC_recv(IRCC_client *irc); void IRCC_send(IRCC_client *irc, char *msg, char *channel); unsigned int IRCC_init(IRCC_client *irc, size_t size); void IRCC_close(IRCC_client *irc); -#endif