From: shijie001@208suo.com
To: w@1wt.eu
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] tools/nolibc: Fix warnings in ctype.h
Date: Mon, 17 Jul 2023 15:18:50 +0800 [thread overview]
Message-ID: <ca6e44ee0e6bd01abd31415c986aa269@208suo.com> (raw)
In-Reply-To: <tencent_17E97603EBEAD2CF4830CCE529421ED7BF05@qq.com>
The following checkpatch warnings are removed:
WARNING: __always_unused or __maybe_unused is preferred over
__attribute__((__unused__))
Signed-off-by: Jie Shi <shijie001@208suo.com>
---
tools/include/nolibc/ctype.h | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/tools/include/nolibc/ctype.h b/tools/include/nolibc/ctype.h
index 6f90706d0644..41c49002c0fc 100644
--- a/tools/include/nolibc/ctype.h
+++ b/tools/include/nolibc/ctype.h
@@ -13,84 +13,84 @@
* As much as possible, please keep functions alphabetically sorted.
*/
-static __attribute__((unused))
+static __always_unused
int isascii(int c)
{
/* 0x00..0x7f */
return (unsigned int)c <= 0x7f;
}
-static __attribute__((unused))
+static __always_unused
int isblank(int c)
{
return c == '\t' || c == ' ';
}
-static __attribute__((unused))
+static __always_unused
int iscntrl(int c)
{
/* 0x00..0x1f, 0x7f */
return (unsigned int)c < 0x20 || c == 0x7f;
}
-static __attribute__((unused))
+static __always_unused
int isdigit(int c)
{
return (unsigned int)(c - '0') < 10;
}
-static __attribute__((unused))
+static __always_unused
int isgraph(int c)
{
/* 0x21..0x7e */
return (unsigned int)(c - 0x21) < 0x5e;
}
-static __attribute__((unused))
+static __always_unused
int islower(int c)
{
return (unsigned int)(c - 'a') < 26;
}
-static __attribute__((unused))
+static __always_unused
int isprint(int c)
{
/* 0x20..0x7e */
return (unsigned int)(c - 0x20) < 0x5f;
}
-static __attribute__((unused))
+static __always_unused
int isspace(int c)
{
/* \t is 0x9, \n is 0xA, \v is 0xB, \f is 0xC, \r is 0xD */
return ((unsigned int)c == ' ') || (unsigned int)(c - 0x09) < 5;
}
-static __attribute__((unused))
+static __always_unused
int isupper(int c)
{
return (unsigned int)(c - 'A') < 26;
}
-static __attribute__((unused))
+static __always_unused
int isxdigit(int c)
{
return isdigit(c) || (unsigned int)(c - 'A') < 6 || (unsigned
int)(c - 'a') < 6;
}
-static __attribute__((unused))
+static __always_unused
int isalpha(int c)
{
return islower(c) || isupper(c);
}
-static __attribute__((unused))
+static __always_unused
int isalnum(int c)
{
return isalpha(c) || isdigit(c);
}
-static __attribute__((unused))
+static __always_unused
int ispunct(int c)
{
return isgraph(c) && !isalnum(c);
next parent reply other threads:[~2023-07-17 7:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <tencent_17E97603EBEAD2CF4830CCE529421ED7BF05@qq.com>
2023-07-17 7:18 ` shijie001 [this message]
2023-07-17 7:37 ` [PATCH] tools/nolibc: Fix warnings in ctype.h Willy Tarreau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ca6e44ee0e6bd01abd31415c986aa269@208suo.com \
--to=shijie001@208suo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=w@1wt.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox