blob: 6a84d0f86302d1ee382af759ad42baa0119ca44f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
ifeq ($(subdir),misc)
tests += tst-writev
endif
ifeq ($(subdir),stdio-common)
fmt-xscanf-int-convs += int long
fmt-xscanf-uint-convs += uint ulong
endif
# strtol is aliased to stroll
CFLAGS-strtol.c += -fno-builtin-strtoll $(config-cflags-wno-ignored-attributes)
# strtoul is aliased to strtoull
CFLAGS-strtoul.c += -fno-builtin-strtoull $(config-cflags-wno-ignored-attributes)
|