diff options
author | Ron Yorston <rmy@pobox.com> | 2021-08-09 14:58:37 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-08-09 14:58:37 +0100 |
commit | 56e1d04ae71a05586fa3414aabdef0de720d0720 (patch) | |
tree | e06c0b37c22dd811e48b7a9886a4de2bf04b129f /win32/Kbuild | |
parent | dd10dfda5834b0e67ebab0425d0a48fbfc939d7f (diff) | |
download | busybox-w32-56e1d04ae71a05586fa3414aabdef0de720d0720.tar.gz busybox-w32-56e1d04ae71a05586fa3414aabdef0de720d0720.tar.bz2 busybox-w32-56e1d04ae71a05586fa3414aabdef0de720d0720.zip |
win32: code shrink character class detection
Add a routine to detect the names of character classes. Use it
in fnmatch(3) and regcomp(3), replacing local code in the former.
Saves 216 bytes.
Diffstat (limited to 'win32/Kbuild')
-rw-r--r-- | win32/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/Kbuild b/win32/Kbuild index cabd70849..6ab0dc077 100644 --- a/win32/Kbuild +++ b/win32/Kbuild | |||
@@ -13,6 +13,7 @@ lib-$(CONFIG_PLATFORM_MINGW32) += ioctl.o | |||
13 | lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o | 13 | lib-$(CONFIG_FEATURE_PRNG_ISAAC) += isaac.o |
14 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o | 14 | lib-$(CONFIG_PLATFORM_MINGW32) += mingw.o |
15 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o | 15 | lib-$(CONFIG_PLATFORM_MINGW32) += process.o |
16 | lib-$(CONFIG_PLATFORM_MINGW32) += match_class.o | ||
16 | lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o | 17 | lib-$(CONFIG_PLATFORM_MINGW32) += mntent.o |
17 | lib-$(CONFIG_PLATFORM_MINGW32) += net.o | 18 | lib-$(CONFIG_PLATFORM_MINGW32) += net.o |
18 | lib-$(CONFIG_PLATFORM_MINGW32) += poll.o | 19 | lib-$(CONFIG_PLATFORM_MINGW32) += poll.o |