diff options
author | dzwdz | 2021-09-19 21:25:09 +0200 |
---|---|---|
committer | dzwdz | 2021-09-19 21:25:09 +0200 |
commit | 388151741be9622a80a8161dd2cbea1be8bd18a2 (patch) | |
tree | 0f891621f4d9a4969e88d4d7760de66cc176b127 /src/kernel/util.h | |
parent | d6e3c058d62befd034ec47cbcd57ae02d97ba1db (diff) |
remove the unused static_strcmp macro
Diffstat (limited to 'src/kernel/util.h')
-rw-r--r-- | src/kernel/util.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/kernel/util.h b/src/kernel/util.h index 0aa2c4c..b50810d 100644 --- a/src/kernel/util.h +++ b/src/kernel/util.h @@ -8,7 +8,3 @@ void *memcpy(void *dest, const void *src, size_t n); void *memset(void *s, int c, size_t n); int memcmp(const void *s1, const void *s2, size_t n); - -// s1 MUST be a string known at compiletime -#define static_strcmp(s1, s2) \ - memcmp(s1, s2, sizeof(s1)) |